Connecting Tech Pros Worldwide Help | Site Map

Automatic Scrolling

aroraamit81@gmail.com
Guest
 
Posts: n/a
#1: Mar 13 '06
Is there any method by which i get latest information on my web page,
for eg. the bottom scrolling bar on which latest news as entered by
particular user gets reflected on other user's page without refreshing
their page.

Ofcourse I want the same on my ASP.NET page

Any Help!!!!!!!

Regards,
Amit Arora

aroraamit81@gmail.com
Guest
 
Posts: n/a
#2: Mar 13 '06

re: Automatic Scrolling


Is Multithreading the right answer for this?????

Juan T. Llibre
Guest
 
Posts: n/a
#3: Mar 13 '06

re: Automatic Scrolling


If you're using ASP.NET 2.0, use this in your code :
Page.MaintainScrollPositionOnPostBack = True

You can also use a Page directive :
<%@ Page MaintainScrollPositionOnPostback="true" %>




Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaņol : http://asp.net.do/foros/
===================================
<aroraamit81@gmail.com> wrote in message
news:1142245860.511097.172110@v46g2000cwv.googlegr oups.com...[color=blue]
> Is there any method by which i get latest information on my web page,
> for eg. the bottom scrolling bar on which latest news as entered by
> particular user gets reflected on other user's page without refreshing
> their page.
>
> Ofcourse I want the same on my ASP.NET page
>
> Any Help!!!!!!!
>
> Regards,
> Amit Arora
>[/color]


Bruce Barker
Guest
 
Posts: n/a
#4: Mar 13 '06

re: Automatic Scrolling


http only supports polling for this. create an iframe or use ajax for this.

-- bruce (sqlwork.com)


<aroraamit81@gmail.com> wrote in message
news:1142245860.511097.172110@v46g2000cwv.googlegr oups.com...[color=blue]
> Is there any method by which i get latest information on my web page,
> for eg. the bottom scrolling bar on which latest news as entered by
> particular user gets reflected on other user's page without refreshing
> their page.
>
> Ofcourse I want the same on my ASP.NET page
>
> Any Help!!!!!!!
>
> Regards,
> Amit Arora
>[/color]


aroraamit81@gmail.com
Guest
 
Posts: n/a
#5: Mar 14 '06

re: Automatic Scrolling


Thanks Bruce,

Even my initial idea was the same, but my teammate was not insisting
for the same.

Anyways Thanks a ton again.........

Closed Thread