I think the following code speaks for itself, but basically, when trying to put a value from a form into a variable, I'm getting nothing to come through.
I'm new to any sort of web coding, so any help is greatly appreciated:
I'm new to any sort of web coding, so any help is greatly appreciated:
Code:
<%
// Assign Variables
hdnDate=request.form("hdnDate")
%>
<html>
<title>Detail Entry Page</title>
<BODY>
<form name="dentry" action=<%= request.servervariables("script_name") %> METHOD="POST">
<!-- HIDDEN ENTRIES -->
<INPUT Type="text" NAME="hdnDate" value="1">
<p align="center"><b><font face="Arial">
<!-- Works -->
Detailed Entry for <%=Response.Write("hdnDate")%>
<br>
<!-- Does not Work -->
Detailed Entry for <%=Response.Write(hdnDate)%>
</font></b></p>
</body>
</html>