Message Box

M

Mark Rae [MVP]

How do I display a message box on a button?

Assuming you mean "How do I display a message box when I click a button?"...

<asp:Button ID="MyButton" runat="server" Text="Hello"
OnClientClick="alert('Hello');" />
 
J

JJ297

Assuming you mean "How do I display a message box when I click a button?"...

<asp:Button ID="MyButton" runat="server" Text="Hello"
OnClientClick="alert('Hello');" />

Yes, this is what I wanted. I'm actually sking the user if they are
sure they want to delete their request they selected. How do I give
them the option to back out if they don't want to delete a question.
 
E

Evan M.

Yes, this is what I wanted. I'm actually sking the user if they are
sure they want to delete their request they selected. How do I give
them the option to back out if they don't want to delete a question.

<asp:Button ID="MyButton" runat="server" Text="Hello"
OnClientClick="javascript:return confirm('Are you sure you want to
delete this item?');" />
 
M

Mark Rae [MVP]

Yes, this is what I wanted. I'm actually asking the user if they are
sure they want to delete their request they selected. How do I give
them the option to back out if they don't want to delete a question.

<asp:Button ID="MyButton" runat="server" Text="Delete"
OnClientClick="return confirm('Are you sure you want to delete this
record?');"
OnClick="MyButton_Delete" />
 
J

JJ297

<asp:Button ID="MyButton" runat="server" Text="Hello"
OnClientClick="javascript:return confirm('Are you sure you want to
delete this item?');" />- Hide quoted text -

- Show quoted text -

Thanks! It's great having pro's being able to answer my simple
problems. I guess you can tell I'm a newbie.
 
J

JJ297

Check outhttp://4guysfromrolla.com/

They have a lot of good tutorials that will show you how to do all
sorts of stuff.- Hide quoted text -

- Show quoted text -

Thanks!
 

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

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top