I am trying to make a input for users on MY asp page to allow new users to make ther names limegreen<FORM METHOD="post" ACTION="/????????">
Please enter your name:<font size=1><INPUT TYPE="text" NAME="name"><INPUT TYPE="hidden" NAME="color" value="#00FF00"> <INPUT TYPE="submit" VALUE="Submit">
</form>
Now on My asp page I have setup it reads from a asp file
that looks like this
<!-- mod.asp script -->
<!-- reScripting by: MA WarGod -->
<!--=Head-Administrator= -->
<% On Error Resume Next %>
<% If Handle="WarGod MA" then
Response.write "<b><font color='gold'>"
end if %>
<% If Handle="~*WarGod MA*~ *Venna*RGW" then
Response.write "<b><font color='gold'>"
end if %>
<% If Handle="IMORATEC`*Never say Neve" then
Response.write "<b><font color='yellow'>"
end if %>
<% If Handle="-=Head-Administrator=-" then
Response.write "<b><font color='gold'>"
end if %>
<% If Handle="-=Head-Administrator=--=" then
Response.write "<b><font color='gold'>"
end if %>
My question is how do I make a input that will write the if handle in full to that file?
Please enter your name:<font size=1><INPUT TYPE="text" NAME="name"><INPUT TYPE="hidden" NAME="color" value="#00FF00"> <INPUT TYPE="submit" VALUE="Submit">
</form>
Now on My asp page I have setup it reads from a asp file
that looks like this
<!-- mod.asp script -->
<!-- reScripting by: MA WarGod -->
<!--=Head-Administrator= -->
<% On Error Resume Next %>
<% If Handle="WarGod MA" then
Response.write "<b><font color='gold'>"
end if %>
<% If Handle="~*WarGod MA*~ *Venna*RGW" then
Response.write "<b><font color='gold'>"
end if %>
<% If Handle="IMORATEC`*Never say Neve" then
Response.write "<b><font color='yellow'>"
end if %>
<% If Handle="-=Head-Administrator=-" then
Response.write "<b><font color='gold'>"
end if %>
<% If Handle="-=Head-Administrator=--=" then
Response.write "<b><font color='gold'>"
end if %>
My question is how do I make a input that will write the if handle in full to that file?