server.transfer question
-
Hi. I'm passing data from main-page to secondary-page. After I get what I need I want to pass the new data back to the main-page. However, the main-page get's refreshed and nothing is passed. Is this a server.transfer problem, or a postback issue? Krisman
-
Hi. I'm passing data from main-page to secondary-page. After I get what I need I want to pass the new data back to the main-page. However, the main-page get's refreshed and nothing is passed. Is this a server.transfer problem, or a postback issue? Krisman
If you are using transfer then it isn't a postback issue as it all happens on the server. Unless you a using a redirect on your secondary page. Is Server.Execute more like what you want to do?
-
If you are using transfer then it isn't a postback issue as it all happens on the server. Unless you a using a redirect on your secondary page. Is Server.Execute more like what you want to do?
Hi. I'm using transer from the first page and then transfer from the secondary page back to the first page. I tried server.execeute, but that didn't close the main-page, it just put the secondary-page over top of the main-page, causing a very jumbled up looking mess. Krisman