Posted by Noozer on 10/02/44 11:22
Forgive the scant example, but it shows exactly what my issue is...
In MyPage.html:
<form id="MyForm" name="MyForm" method="post" action="DoIt.asp">
<input name="Notes" id="Notes">
<button onclick="ProcForm();">
</form>
<script language="javascript">
document.forms("MyForm").Notes.value="HELLO!"
</script>
In DoIt.asp:
<%
Notes = request.Form("Notes")
response.write Notes
response.flush
response.end
%>
....Results in "undefined" showing in my browser. Change "Notes" to "Nts" and
now it puts "HELLO!" into my browser as expected.
Is there a "Notes" property or method to Form objects?????
Navigation:
[Reply to this message]
|