Thanks, Request.Form("keyname") is where I thought it would be, but wasn't
sure. However, when I look at Request.Form.Keys.Count in the Immediate
Window, the count = 0. So, for some reason, the <INPUT> values of
MyPage.htm are not being posted to Register.aspx. I don't see anything
malformed in the HTML (see below). Is there anything special that has to be
done to the receiving ASPX page to allow it to receive values posted to it
from another HTML page?
Thanks
TR
<FORM ACTION="Register.aspx" METHOD="POST" ID="Form1">
Please enter your:<br>
Username:
<input type="text" id="uid" name="uid" style="width: 100px">
<br>
Password:
<input type="password" name="pw" id="pw" style="width: 100px">
<br>
<INPUT TYPE="submit" class="submitter" name="submitbutton"
VALUE="Logon"><br>
<input type="text" style="width: 100px;" name="cc" id="cc">
<br>
</FORM>
Karl Seguin said:
I'm not 100% sure what you are asking. But it sounds like you want to know
how to access form fields in Register.aspx? Check out the Request.Form
collection
'VB.Net
Request.Form("FieldName")
//C#
Request.Form["FieldName"];
Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
MyPage.htm has <FORM ACTION="Register.aspx" METHOD="POST">. Where does
Register.aspx reference the values passed to it via the Post method in
MyPage.htm?
Thanks in advance.
TR