palli wrote
Hi Revanth,
Your code didn't format property, but I think I get your point.
The trick here is to use the "post" prefix when calling your VWG apps. See this thread here for more explaination.
Palli
|
I have gone through that Thread, but i didn't get the solution.I think my case is little different,
i want to pass a Query String from asp.net page to VWG Page.I ahve integrated the Form1 with asp.net.
In asp.net (Default.aspx)button click i have written the following code
string str="QueryStringFromASP.NET"
Response.Redirect("VWGForm2.aspx?TransactionUID="+ str + " ");
I have integrated Form1.wgx in VWGForm2.aspx as follows.
<%@ Register Assembly="Gizmox.WebGUI.Forms" Namespace="Gizmox.WebGUI.Forms.Hosts" TagPrefix="vwg" %>
<vwg:FormBox id="vwgvalidations" runat="Server" Form="Form1" Height="100px" Width="100px"></vwg:FormBox>
Now i want to retrieve the str from default.aspx into VWGApplication i.e.VWGForm2.aspx(Whis is been integrated with Form1.wgx).
I have tried all the scenarios which they have mentioned in that Thread, i am getting Object Reference not set to instance of an Obect error. In debug mode, under Quick Watch i am getting the QueryString Key as "vwginstance" instead of "TransactionUID".
Can you please help me and provide me the sample code.
Thanks in advance.