If you want the Page_Load event to not load your data when your press the buton, make sure you use the Page.IsPostBack in page load:
public void Page_Load()
{
if( !Page.IsPostBack )
{
LoadMyData()
}
}
public void Botton_Click(..)
{
SaveData();
LoadMyData();
}
private void LoadMyData(...)
{
}
/Fredrik Norm?n NSQUARED2
Microsoft MVP, MCSD, MCAD, MCT
CornerstoneMy Blog, ASP.Net 2.0 etc