Wrox Programmer Forums
|
Classic ASP Professional For advanced coder questions in ASP 3. NOT for ASP.NET 1.0, 1.1, or 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Classic ASP Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 3rd, 2007, 05:35 PM
Registered User
 
Join Date: Jan 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Retreiving value from InputBox

I have entered this code in:

<%
    msg = "MY MESSAGE"
    Response.Write("<" & "script>alert('" & msg & "');")
    Response.Write("<" & "/script>")
%>

and i pops an input box up on the screen before the rest of the page loads, But i cannot figure out how to retreive the user's input on that box. Any Ideas?

 
Old January 4th, 2007, 03:36 PM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

Are you looking to collection user input instead of just popping up an alert box? If so, you want the javascript "prompt" method instead:

   var strUserValue = prompt("Enter a value");

Please remember however that the result of that user prompt is not available directly back at the server side.

-Peter





Similar Threads
Thread Thread Starter Forum Replies Last Post
Odd InputBox error Archdeacon VBScript 3 June 15th, 2008 10:50 PM
Password format on an InputBox dartcoach Access 3 April 18th, 2006 04:45 AM
Format inputbox jesseleon Access VBA 2 October 5th, 2005 03:14 PM
Inputbox and Formulas bahachin Excel VBA 3 February 17th, 2005 01:39 AM
InputBox Misbehaving bph Access 10 March 4th, 2004 01:09 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.