Hi .
i'm using radwindows to show a notification .
when i close this notification with X button windows close normally.
but when i use OK button page refresh after closing notification
i whant close notification with OK button without refresh like X button
Thank You
i'm using radwindows to show a notification .
when i close this notification with X button windows close normally.
but when i use OK button page refresh after closing notification
i whant close notification with OK button without refresh like X button
<
telerik:RadWindowManager
ReloadOnShow
=
"false"
ID
=
"RadWindowManager1"
runat
=
"server"
EnableShadow
=
"true"
style
=
"direction: rtl"
EnableViewState
=
"false"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"RadWindowPopup"
VisibleOnPageLoad
=
"false"
EnableShadow
=
"true"
Behaviors
=
"Close"
AutoSize
=
"false"
Height
=
"180"
Width
=
"330"
runat
=
"server"
style
=
"direction: rtl"
CenterIfModal
=
"false"
Modal
=
"true"
CssClass
=
"radwindowpopup"
VisibleStatusbar
=
"false"
>
<
ContentTemplate
>
<
div
class
=
"popup"
>
<
div
class
=
"popup_l"
>
<
div
ID
=
"PopupIcon"
runat
=
"server"
></
div
>
</
div
>
<
div
class
=
"popup_r"
>
<
asp:Literal
ID
=
"UserMessage"
runat
=
"server"
> Message </
asp:Literal
>
</
div
><
br
></
br
>
<
div
class
=
"clear popup_button"
>
<
asp:Button
ID
=
"Button"
runat
=
"server"
Text
=
"OK"
/>
</
div
>
</
div
>
</
ContentTemplate
>
</
telerik:RadWindow
>
</
Windows
>
</
telerik:RadWindowManager
>
Dim
script
As
String
=
"function f(){$find("
""
+ RadWindowPopup.ClientID +
""
").show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);"
ScriptManager.RegisterStartupScript(Page, Page.
GetType
(),
"key"
, script,
True
)
Thank You