Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: pillbug22Posted on 2005-03-15 at 09:46:12ID: 13546891
If you're planning on using something like the DataGrid to display your data results, you can always use the
If Not Page.IsPostBack
check and only bind your dataGrid when you click "Display". The reast of your page should stay as it was before you clicked the button. This would especially be the case if your logo/banner/menu/etc are custom controls that do not relay on code based in the content pane to display.
Something like:
Page_Load()
If Not Page.IsPostBack Then
'Load page
LoadAnyPageStuff()
BindGrid()
Else
'bind grid based on textbox
BindGrid()
End If
End Sub