MSGBOX Example

C

Chuck Traywick

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

S. Justin Gengo

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 www.aboutfortunate.com. 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:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
 
S

Steve C. Orr, MCSD

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:
http://msdn.microsoft.com/library/d...mWebUIPageClassRegisterStartupScriptTopic.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

MsgBox 2
msgbox 1
MSGBOX PROBLEM 3
msgbox 4
MsgBox in ASP.NET? 1
MsgBox Error 1
Weird ASP.NET 2.0 Error 1
Enterprise Logging does nothing on server 5

Members online

Forum statistics

Threads
473,756
Messages
2,569,533
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top