0

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?

user2163530
  • 105
  • 1
  • 1
  • 6

1 Answers1

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