Inputbox ?

  • Thread starter Thread starter Guest
  • Start date Start date
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.

ASP doesn't work like a Windows app does.
 
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>
 
Back
Top