CharlieMike73
Programmer
Hi, I have a form (see sample code below) that I want to submit to itself.
The thing is I am not able to get it to recognise it has been submitted.
How do I do this?
=== SAMPLE CODE ===
<%
'''''''''''''''''''''''
' POST FORM SUBMITION
'''''''''''''''''''''''
Dim submitted
if submitted = "1" then
response.write "Submitted"
else
response.write "Not Submitted"
end if
%>
<form name="form1" id="form1" method="post" action="<% response.write Page_Name %>">
<input name="submitted" type="hidden" id="submitted" value="1" />
<table width="50%" border="1" cellspacing="0" cellpadding="0">
The thing is I am not able to get it to recognise it has been submitted.
How do I do this?
=== SAMPLE CODE ===
<%
'''''''''''''''''''''''
' POST FORM SUBMITION
'''''''''''''''''''''''
Dim submitted
if submitted = "1" then
response.write "Submitted"
else
response.write "Not Submitted"
end if
%>
<form name="form1" id="form1" method="post" action="<% response.write Page_Name %>">
<input name="submitted" type="hidden" id="submitted" value="1" />
<table width="50%" border="1" cellspacing="0" cellpadding="0">