User interaction in ASP .NET is done through controls placed on a web form.
The InputBox, as you know it from Windows apps, can normally only be used on
the local machine. For example, if you were to call the InputBox function
from a web page somehow, it would actually display on the web server's
screen and not the user's screen.
Nothing on the ASP/ASP.NET side, but if you can live with some JavaScript
code...
<script language="javascript">
s = window.prompt( "Message", "Default" )
</script>
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.