I have a marquee which is getting data from database. And every time I go through pages or refresh marquee starts from the beginning position. (most right side of page). Is there any way to not to begin marquee?
Asked
Active
Viewed 708 times
0
-
Should not allow the page to load. Try to use page partial load. – Ayyappan Sekaran May 31 '13 at 06:41
-
Page Partial Load? Could you please give me some link or example site link? – user2163530 May 31 '13 at 06:47
-
http://stackoverflow.com/questions/8239263/continues-marquee-in-asp-net – Ayyappan Sekaran May 31 '13 at 06:59
1 Answers
0
You can get marque only once first time page load
if (!IsPostBack)
{
//Call you method here which can get data on page load, in a page load method
}

Black Cloud
- 471
- 1
- 3
- 14