If your pages are high/long and controls that cause postback are placed on the bottom it can be really annoying for users to manually scroll down after every postback.
Fortunately, this can be easily solved using the Page.MaintainScrollPositionOnPostBack property like this:
<%@ Page Language="C#" AutoEventWireup="true" ... MaintainScrollPositionOnPostback="true" %>
After the postback and reload of the page, the previous scroll position will be restored.
NOTE: This only works in .Net Framework 2.0 and higher!

Ankit NandekarPosted May 25, 2011, 12:04 PM
thnx mayur and ravi
Ravi K KashyapPosted May 25, 2011, 10:01 AM
realy nice, keep it up ankit :)
Mayur GujrathiPosted May 25, 2011, 6:05 AM
You are inventing new things good to know post more i would like to know everything you have