Request Form variables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello all,

In my app, I'm opening up another window and doing a redirect to another
app. Within this app, I need to do a Request.Form["variable"] in order to
retrieve a variable from app1.

Can this be done? If so, could anyone help?

Thank You?

JY
 
I believe that you cannot do this. Form variables can ne preserved only when
you use Server.Transfer method and you cannot use Server.Transfer method to
load a page from different app. using 'Response.Redirect', you cannot access
form variables posted from app1.

Regards,
Augustin
 
Hello all.

I've found a way to do this. Instead of using the server form we post to a
different page, then that page, using JS submits to another page. The Form
variables are then available.

Thanks,

Jon

Augustin Prasanna said:
I believe that you cannot do this. Form variables can ne preserved only when
you use Server.Transfer method and you cannot use Server.Transfer method to
load a page from different app. using 'Response.Redirect', you cannot access
form variables posted from app1.

Regards,
Augustin

Jon said:
Hello all,

In my app, I'm opening up another window and doing a redirect to another
app. Within this app, I need to do a Request.Form["variable"] in order to
retrieve a variable from app1.

Can this be done? If so, could anyone help?

Thank You?

JY
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top