need help with panel hiding

cz007j

Freshman
Joined
Jul 28, 2004
Messages
26
Hi, I need a little help with my current project. I have 2 panels and 1 of them is to hide depending on a selection from the other panel. I set
if me.cboReception.checked then
2ndPanel.visible = false
end if
However, I realize that this is not reflected in the page until another load. How do I set this to reflect in the webpage that a user is currently on?

much thnx in advance
 
Set the AutoPostBack property of your cboReception control to True. By doing this, the page will automatically postback every time that control's value is changed.
 
Back
Top