and user Conversations
You can make a Web page like senduserinfo.htm, just use the <form method= "post" action= "--webbot-self--" > Change to <form method= "post" action = "userinfo.asp" > can transmit the data you submit to userinfo.asp processing.
Userinfo.asp's source code request.form ("UserName"), Request.Form ("Usergender"), Request.Form ("UserInfo"), Usergender and UserInfo are the name representations of the data to be submitted in senduserinfo.htm. You can compare senduserinfo.htm with userinfo.asp. The following is a partial explanation of Userinfo.asp's source code
<% ASP uses the VBScript language, and you can also change to a JavaScript language. %>
<%@ Language=vbscript%>
<% ' userinfo.asp
Option Explicit
Response.expires=0
Dim StrName, Strgender, STRM, STRMSG
' Get senderuserinfo.htm's name: Name= ' UserName ' transmitted data.
StrName = Trim (Request.Form ("UserName")) ' trim function is used in addition to trailing spaces
' Get Sex in senderuserinfo.htm:: Name= ' usergender ' data sent over
Strgender = Trim (Request.Form ("Usergender"))
' Get senderuserinfo.htm message:: Name= "UserInfo" sent over the data
STRM = Trim (Request.Form ("UserInfo"))
STRMSG = Replace (Strm,vbcrlf, "<Br>" & vbCrLf)
%>
<HTML><BODY>
<% ' Displays the obtained data%>
Name: <%= strname%><br><br>
Sex: <%= strgender%><br><br>
Message: <Br><Br>
<%= strm%><br><br>
</BODY></HTML>