Atlas is adding a lot of character to my pages!! Thanks for your hard work.
Within my button1_click, I would like to collapse a panel and continue on processing the server code to run the sproc, show grid, etc...
Using VB, Something like:
Protected
Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
?? code to collapse panel ??
?? CollapsiblePanelProperties.Collapsed = true
?? code to collapse panel ??
'run stored procedure and show populated grid
GridView1.DataBind()
GridView1.Visible = True
End Sub