I have a single input box, and a 'submit'button, code as follows:
This form submits the information to the application, BUT, is there a way that I can have it ALSO submitted to a text file beheined the scenes without the user having to ckick two buttons, or entering the information 2 times?
Gary
Code:
<FORM NAME="mainForm" ACTION="<%=Request.ServerVariables("SCRIPT_NAME")%>" METHOD="POST">
<INPUT TYPE="HIDDEN" NAME="ChatName" VALUE="<%=strChatName%>">
<INPUT TYPE="HIDDEN" NAME="Font" VALUE="<%=strFont%>">
<INPUT TYPE="HIDDEN" NAME="Color" VALUE="<%=strColor%>">
<INPUT TYPE="HIDDEN" NAME="Size" VALUE="<%=strSize%>">
<INPUT TYPE="HIDDEN" NAME="Logout">
<INPUT TYPE="TEXT" NAME="chatInput" SIZE=30><BR>
<INPUT TYPE="SUBMIT" NAME="chatSubmit" VALUE=" Send ">
<INPUT TYPE="SUBMIT" NAME="chatSubmit" VALUE="Log out">
<!--<INPUT TYPE="BUTTON" NAME="Who" VALUE="See who's on" onClick="checkUsers('checkusers.asp')">-->
</FORM>
This form submits the information to the application, BUT, is there a way that I can have it ALSO submitted to a text file beheined the scenes without the user having to ckick two buttons, or entering the information 2 times?
Gary