Link to home
Start Free TrialLog in
Avatar of Ricky White
Ricky WhiteFlag for United States of America

asked on

ASP.Net VB.Net Multi line Textbox scrolled till bottom


We have an ASP.Net VB.Net web application(.net framework 1.1 and Visual Studio 2003).
We would like to display a Usage policy on the webform which is about 6 pages long. Once the user scrolls all the way to the bottom I would enable the accept and reject buttons.

My question is how can I find out that the user has scrolled all the way to the bottom of the rich text box?
Please advise.

Thanks.


ASKER CERTIFIED SOLUTION
Avatar of blandyuk
blandyuk
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Ricky White

ASKER

Cool I will try that. BTW, is Rich Text box the way to go or are there other better controls to display contents from a 6 page word document.

Thanks!
If you will try external Verticle Scroll bars so you can limit user not to scroll for a large value and until the current value not equals to max value donot enable ACCEPT button.


It is just an idea may be not a favourable one.
I would use the Rich Textbox control as its much simpler to use than embedding a Word object into your form. Depends really if you content contains images etc.
Thanks!