Hi All,
I am new for development as well as asp; my problem is session’s creation using (parameter).
Say for example
i have form1.asp
<body>
Test Suite Email Form:
<br />
<form method="get" action="simpleform.asp">
First Name: <input type="text" name="fname" /><br />
Last Name: <input type="text" name="lname" /><br /><br />
<input type="submit" value="Submit" />
</form>
form2.asp
<%
request.querystring("fname")
Session("fname")=fname
Session.Timeout = 100
Response.Write(Session("fname"))%>
and
The below set of code is working fine because i am hard coding the values
<%
Session("fname")="I am Working"
Session.Timeout = 100
Response.Write(Session("fname"))%>
so could you please help me on this....
Thanks in advance
Ashok N