Help with Hidden Fields & Automatic postback

andrewmaroon

New Member
I have a .NET application that needs to pass variables to a legacy ASP application. <BR> <BR>The approach we took was a simple one: We created a page with all hidden fields that are populated with the needed variables, then we link to the legacy ASP page.<BR><BR>We encountered two problems:<BR><BR>1. The ASP page cant see the fields using Request.Form("Field1")<BR><BR>2. We couldn't make the page post itself back to re-link to the ASP page after it's populated. This is needed because the page is nothing more than a place-holder, and its purpose was only to pass information.<BR><BR>Thanks,<BR><BR>Nidal<BR><BR>I created a new application, create a form1 with textbox1 on it,<BR>I then redirected to page2. In this application pag2 can see page1 textbox1 when I call Request.Form["textbox1"].<BR><BR>Which leeds me to think that the problem with my real application not seeing the fields on a page from another page to be security.<BR><BR>Could that be the reason?<BR><BR><BR><BR>Is this
 
Back
Top