How to submit the different data on single submit
<%@ language=VBScript %>
<html >
<head>
<title>Encore Support Portal</title>
</head>
<body>
<form name="test1" action="test.asp" method="post" id="form1">
<input type="text" name="fname">
<input type="text" name="lname">
</form>
</body>
</html>
<html>
<body>
<form name="test" action="test.asp" method="post">
<input type="text" name="education">
<input type="text" name="profession">
<input type="submit" name="Submit" value="Generate" ID="Submit1">
</form>
</body>
</html>
<%
Response.Write(Request.Form("test1.fname"))
Response.Write(Request.Form("test1.lname"))
Response.Write(Request.Form("education"))
Response.Write(Request.Form("profession"))
%>
plz anybody tell me how to submit the different data of different forms if the asp on single submit.
|