Hello,
Try this.
In .aspx.cs page take one Public variable to store value
from DB:
public String marqueeData = "";
protected void Page_Load(object
sender, EventArgs e)
{
// get your
data from DB here and assign it to this variable
marqueeData = "hello world";
}
Now, and in .aspx page, you can write it between marquee
tag. To get value from the DB. So you
can show it in webpage
<marquee>
<% =marqueeData %>
</marquee>