View Single Post
Old 03-22-2006, 06:52 PM   #5 (permalink)
rdove
Masked Moderator
 
rdove's Avatar
 
Join Date: May 2002
Location: Indianapolis, IN
Posts: 260
rdove is on a distinguished road
Have you tried enabling ViewState?

Also, on post backs, the page_load event is triggered every time a server request occurs. Try using

If Not Page.IsPostBack Then

'some code

End If

This will allow you to keep function calls from being triggered in the event that the page is posted back to the server.
__________________
~Ryan

rdove is offline   Reply With Quote