problem with response.redirect and forms 
Author Message
 problem with response.redirect and forms

hi,

i've encountered a strange problem involving Session, response.redirect and
the Request object. basically, i need to keep a request.form object in
session.. lets say my first page looks like this:

<FORM method="post" action="form_set.asp">
 <TEXTAREA name="myTextarea">
  <%
    If Session("objForm") <> "" Then
     Response.Write Session("objForm")("myTextarea")
    End If
  %>
 </TEXTAREA>
 <INPUT TYPE="submit">
</FORM>

i post the form to this page:

Set Session("objForm") = Request.Form
Response.Redirect("form.asp")

i set the Session variable to the request.form collection. so, i would
expect that Session("objForm")("myTextarea") would return the text i entered
in the first page. if i do not redirect back to the first page, everything
is fine (ie: objForm is set, i can access myTextArea,etc). but when i use
response.redirect, the session variable is empty! when i use server.transfer
instead, it works. is this the normal behavior? why can't i put request.form
in session when using response.redirect?

thanks a lot,
shaun



Tue, 03 Aug 2004 03:42:59 GMT  
 
 [ 1 post ] 

 Relevant Pages 

1. Response Redirect doesn't Work - No me funciona Response Redirect

2. passing form info in Response.Redirect

3. problem with response.redirect

4. Response.Redirect + Netscape Browser + StyleSheets = Problem!

5. Response Redirect problem

6. problem with response.redirect

7. Response.Redirect problem...

8. Style Sheet problem with response.redirect

9. Response.Redirect + Netscape Browser + StyleSheets = Problem!

10. Problem Launching RealPlayer After Response.Redirect

11. Problem with Response.Redirect vs. frames

12. Response.Redirect problem

 

 
Powered by phpBB® Forum Software