Hi, i have a function in CBasePage called AjaxShowMessageBox(message)
that displays javascript alert using
ScriptManager.RegisterStartupScript
And I have this file, TEST.ASPX page which inherits CBagePage
in CBasePage, how do I stop/cancel execution of TEST.ASPX ? But I
still want to execute AjaxShowMessageBox function.
bruce barker - 09 Oct 2007 16:33 GMT
so you want the browser to show an empty page with an alert.
just do a loop thru Page.Controls, and set them all to Visible=false.
-- bruce (sqlwork.com)
> Hi, i have a function in CBasePage called AjaxShowMessageBox(message)
> that displays javascript alert using
[quoted text clipped - 4 lines]
> in CBasePage, how do I stop/cancel execution of TEST.ASPX ? But I
> still want to execute AjaxShowMessageBox function.