How do I make a dialog box??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to make a simple dialog box and don't seem to be able to do so.... Does anyone know a simple method to do this?

Thanks
 
For what purpose? There are several types of dialog boxes.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
When a user selects a button, I want a dialog box to popup with a message.

ie: User selects product button - "Product not available at this time" is the dialog box.

Thanks,
 
Use a javascript alert.


<input type="button" value="Button" onclick="popup()">

<script type="text/javascript">
function popup(){
alert("This product is currently unavailable");
}
</script>


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Do you mean like the ones that windows uses? Do you mean a simple "error" or
"alert" box - these are done with either Javascript or VBScript, but have
specific purposes i.e. the 'information' (white 'i' on blue circle), the "alert"
(black exclamation point on yellow triangle) and 'critical error' (white "X" on
red circle).....

If you mean a pop-up window then try www.jimcoaddins.com
look for the popup spawn


MobileOhm said:
I need to make a simple dialog box and don't seem to be able to do so.... Does
anyone know a simple method to do this?
 

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

Back
Top