An ASP.Net application has a user interface that is pure HTML. It would be a
good idea to learn something about HTML, as it in no way resembles a Desktop
application. In HTML, you have an "input type=text" (one-line textbox) and a
"textarea" (multi-line text box). The built-in server controls for these
would be:
System.Web.UI.WebControls.TextBox (can be configured as single or
multi-line)
System.Web.UI.HtmlControls.HtmlInputText (input type=text)
System.Web.UI.HtmlControls.HtmlTextArea (textarea)
These are all well-documented in the free .Net SDK, which you can download
from:
If you want a dialog box, you can use the JavaScript alert() or confirm()
methods. Otherwise, you'll have to pop up a new browser window, again, using
JavaScript.
--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.