Rank: Advanced Member Groups: Member
Joined: 11/2/2010 Posts: 38
|
Sorry, ask a very silly question:
How to close a server side message box when it click "OK"
MsgBox1.Show("Information", dv(y)("low1") & " to " & dv(y)("high1"), Nothing, New EO.Web.MsgBoxButton("OK"))
in your demo, it do not show any hint, it just click "OK", then it disappear
Thanks
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You don't have to do anything to close a server side message box. For a server side message box clicking the OK button causes a post back (in order to trigger your server event). That will unload the whole page thus destroy the message box completely.
Thanks
|