Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Building Controls > autoscrolling in .net

Reply
Thread Tools

autoscrolling in .net

 
 
AVL
Guest
Posts: n/a
 
      02-27-2006
Hi,

I've a requirement in which I need to implement autoscrolling....
Is there any control in .net which supports this functionality/............

My display list(data) should be scrolling ...........
 
Reply With Quote
 
 
 
 
Steve C. Orr [MVP, MCSD]
Guest
Posts: n/a
 
      02-28-2006
There are a lot of different ways to scroll things. The best way depends on
your requirements.

You can put any control into a fixed size area by putting it in a scrollable
div such as this:

<div id="Layer1" style="position:relative;width:350px;height:200px; overflow:
scroll;">control goes here</div>

The key is to use the "overflow" CSS attribute.Here's more info:
http://www.w3schools.com/css/pr_pos_overflow.asp

Another option is to put your control in an IFrame.
http://msdn.microsoft.com/workshop/a...cts/IFRAME.asp

There are also other more complex techniques with richer client side
functionality such as XML data islands and AJAX.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net



"AVL" <> wrote in message
news:795532DF-C17F-44D2-A2F0-...
> Hi,
>
> I've a requirement in which I need to implement autoscrolling....
> Is there any control in .net which supports this
> functionality/............
>
> My display list(data) should be scrolling ...........



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
autoscrolling in .net =?Utf-8?B?QVZM?= ASP .Net 1 02-27-2006 12:02 PM
Extension for faster autoscrolling? The Waker Firefox 9 12-11-2005 03:34 AM
Scrollbar max height - for autoscrolling cmocmo@gmail.com Javascript 2 07-14-2005 08:53 PM



Advertisments