vote up 0 vote down star

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?

flag

3 Answers

vote up 4 vote down check

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|flag
vote up 3 vote down

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

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

link|flag
vote up 1 vote down

Yes - use the prompt() javascript function.

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

Your Answer

Get an OpenID
or

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