up vote 0 down vote favorite
share [g+] share [fb]

VB has a function InputBox() that will prompt the user to enter a single value, then click OK.

Is there a parallel functionality in ASP.NET, that will get the browser to pop up some kind of input box to return a single value?

If not, how do you recommend I achieve this effect?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

You can do this in JavaScript

var result = prompt("Question", "Default text");
document.getElementById("HiddenInputBox").value = result;
document.HiddenForm.submit();

But most web apps seem to use of screen forms and simulated modal dialogs (fade and disable rest of screen)

jQuery is your friend for this, try simplemodal

link|improve this answer
feedback

For more functionality, check out the asp.net ajax control toolkit, and specifically the modal popup box control.

http://www.asp.net/ajax/

link|improve this answer
feedback

Yes - use the prompt() javascript function.

var x = prompt("enter a value");
link|improve this answer
You might want to provide an example of how he would access that value from the code-behind. – TheTXI Mar 4 '09 at 13:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.