Hello, I am new to asp.net and webforms. I have an asp webform called default.aspx and a 2nd called webform1.aspx. After logging in with default I would like to call webform1 multiple times from default.aspx passing Session variables back and forth. To
test this I created a simple web application with my two forms as shown below: Server.Execute calls webform1.aspx but the webform1 page does not display. It returns to the line after the server.execute statement after executing. I need the webform1 page to
display each time it is called so that I can accept inputs. Can some let me know what I am doing wrong? regards Pat
Logic required
Default.aspx
Login
Calls a service and returns a transaction list
For(i=0;i< number of transaction lines; i++)
{
server.execute (“~/ ...
Go to the complete details ...