View Single Post
Old 06-25-2003, 10:39 AM   #2 (permalink)
rdove
Masked Moderator
 
rdove's Avatar
 
Join Date: May 2002
Location: Indianapolis, IN
Posts: 260
rdove is on a distinguished road
You can, but I'm not exactly sure why you would want to do it this way. You could use a textarea tag and use the split function:

Code:
<%

TextSplit = Split(request.form("txtUserPass", vbcrlf)

Username = TextSplit(0)
Password = TextSplit(1)

%>

<form method="post" action="page.asp">
   <textarea name="txtUserPass"></textarea>
</form>
__________________
~Ryan

rdove is offline   Reply With Quote