Voley
Voley

Reputation: 35

How to solve autopostback in ASP.Net

I have a ASP. application. (A Suervey exactly) And the questions I have put in a table. So 10 questions. The second and 8 questions are radiobutton, in which by clickin the first radiobutton the firt texbox is visible, when clicking the second radiobutton the other textbox gets visible. But the problem is that by every clicking the post back brings me to the top of the page... Is there any trick to not happen this!

Upvotes: 1

Views: 99

Answers (1)

Dooie
Dooie

Reputation: 176

set MaintainScrollPositionOnPostback="true" in the page directive at the top of your page

Upvotes: 3

Related Questions