Ask a Question related to ASP.NET General, Design and Development.
-
Chuck Traywick #1
MSGBOX Example
I am trying to get a message box to work in a web form.
The code looks right
But when I browse the form I get
It is invalid to show a modal dialog or form when the
application is not running in UserInteractive mode.
Specify the ServiceNotification or DefaultDesktopOnly
style to display a notification from a service application
Is there something that explains how to do this.
I want the user to click a button on a web form and then
have a prompt to the user and then have the code perform
based upon the user response.
Thanks
Chuck
Chuck Traywick Guest
-
Msgbox in User COntrol
I have created a user control with an event procedure for a button in the code behind module. Code in this procedure uses the MsgBox function to... -
msgbox title
In my ASP script I call Javascript for a msgbox after the user has submitted the form of their resume information. I saw this example as a way to... -
MsgBox Error
Hi, everyone I use MsgBox("message") function, but error as follows: It is invalid to show a modal dialog or form when the application is not... -
Grid msgbox?
I found it. private void grd_DeleteCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) {... -
msgbox?
Try adding this code to your Page_Load event: btnSave.Attributes.Add("OnClick", "return confirm('Are you sure you want do save?');"); Good... -
S. Justin Gengo #2
Re: MSGBOX Example
Chuck,
You have to do this with a javascript confirmation.
You attach the confirmation to the client side button. Then when the button
is clicked the confirmation box displays your message. The user can click
"OK" or "Cancel". If they click ok the form is submitted to the server where
you can run the code you want to execute in the button's event handler.
I have example code for how to do this in my web site's code library. Just
go to [url]www.aboutfortunate.com[/url]. In the code library the title of the code you
need is titled: Attach a javascript confirmation to any VB.Net button
It's the third entry in the datagrid.
I hope this helps!
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Chuck Traywick" <ctrawick@uslec.net> wrote in message
news:0c8201c355dc$a69bcba0$a301280a@phx.gbl...> I am trying to get a message box to work in a web form.
>
> The code looks right
>
> But when I browse the form I get
>
> It is invalid to show a modal dialog or form when the
> application is not running in UserInteractive mode.
> Specify the ServiceNotification or DefaultDesktopOnly
> style to display a notification from a service application
>
> Is there something that explains how to do this.
>
> I want the user to click a button on a web form and then
> have a prompt to the user and then have the code perform
> based upon the user response.
>
> Thanks
>
> Chuck
>
S. Justin Gengo Guest
-
Steve C. Orr, MCSD #3
Re: MSGBOX Example
That's only for windows forms. You don't want that since you're using
webforms.
You must use client side code for this since you want you message box to be
displayed on the client.
Execute a line of code like this when you want a message box to be
displayed.
(This writes out the necessary client side javascript to your HTML page to
make the alert pop up as soon as the page is sent to their browser.)
RegisterStartupScript("startupScript", "<script
language=JavaScript>alert('This is my message.');</script>");
Here's more info:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebUIPageClassRegisterStartupScriptTopi c.asp[/url]
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Chuck Traywick" <ctrawick@uslec.net> wrote in message
news:0c8201c355dc$a69bcba0$a301280a@phx.gbl...> I am trying to get a message box to work in a web form.
>
> The code looks right
>
> But when I browse the form I get
>
> It is invalid to show a modal dialog or form when the
> application is not running in UserInteractive mode.
> Specify the ServiceNotification or DefaultDesktopOnly
> style to display a notification from a service application
>
> Is there something that explains how to do this.
>
> I want the user to click a button on a web form and then
> have a prompt to the user and then have the code perform
> based upon the user response.
>
> Thanks
>
> Chuck
>
Steve C. Orr, MCSD Guest



Reply With Quote

