I have created 2 asp pages like shown below:

<form method="post"
action="/default.asp?PageToLoad=content\_requests\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>

<body>
Welcome
<%
response.write(request("fname"))
response.write(" " & request("lname"))
%>
</body>

When i run this in my intranet I am able to read the values in the 2nd form
and display it. But when i try to test the same after logging in through
extranet, it fails. All the fields appear as blanks. I have no clue why this
is happening.

I would really appreciate if you could provide any inputs on this.

Regards,
Nikhil

Reply via email to