|
|
Hi, How do you pass the querystring if you are using master pages and content pages for example, i have a master page and two content pages, the first page which is a contentpage sends a response.redirect to the second content page, using your example doesn't show the query string on the master pages url?.
When passing data from one content page to another content page, master page is not in scene. Secondly when we use Response.Redirect() method, we need to pass the query string like string url="Second.asp x?fieldname1=da ta1&fieldname2= data2 Response.Redire ct(ur); We can also use Server.Tranfer( ) method instead of redirecting like this. It automatically passes the data in current content page to next content page. We can use Hidden Fields/Cookies/ Session variables to hold data in second page and use for processing further.