How to pass values to a pop up web form2 from another webform1
-
Hi all, we are facing a problem in VB.NET application in sending the values from web form1 to next webform2 which is a pop up. we are using view state to store variable in webform1 those values we need to pass to popup webform. popup webform is just to give help information for users based on the values that are been sent from webform1 as viewstate. the problem we are facing is we are not able to pass the values to popup form please help us in this regard
h
-
Hi all, we are facing a problem in VB.NET application in sending the values from web form1 to next webform2 which is a pop up. we are using view state to store variable in webform1 those values we need to pass to popup webform. popup webform is just to give help information for users based on the values that are been sent from webform1 as viewstate. the problem we are facing is we are not able to pass the values to popup form please help us in this regard
h
Client side cookie? Query string?
-
Hi all, we are facing a problem in VB.NET application in sending the values from web form1 to next webform2 which is a pop up. we are using view state to store variable in webform1 those values we need to pass to popup webform. popup webform is just to give help information for users based on the values that are been sent from webform1 as viewstate. the problem we are facing is we are not able to pass the values to popup form please help us in this regard
h
Hi Friend. in WebForm1 ----------- Dim Send_Data set Send_Data = createobject("Microsoft.XMLDOM") Send_Data.load "WebForm2.aspx?popup='data'" In WEBForm2 ----------- Page_Load ---------- Dim Somewhere Somewhere = Trim(Request.QueryString("popup")) You can use the 'Somewhere' variable to display the result 'data'. With Regards, Pandian S
-
Hi Friend. in WebForm1 ----------- Dim Send_Data set Send_Data = createobject("Microsoft.XMLDOM") Send_Data.load "WebForm2.aspx?popup='data'" In WEBForm2 ----------- Page_Load ---------- Dim Somewhere Somewhere = Trim(Request.QueryString("popup")) You can use the 'Somewhere' variable to display the result 'data'. With Regards, Pandian S
thanks for oyur help. but understand the problem first. we are even trying the same way to pass values in the URl and catching with query string. but we are not able to get the values.the problem is the webform 2 is a popup web form ok tell me how do you make a form to appear as a popup and then catch the querystring that is passed to this popup
h