I have created a ASP.NET application and created two forms (Webform1.aspx & Webform2.aspx).
I am displaying the Webform2.aspx based on the Webform1.aspx input,
For example if the user didn't fill some field in Webform1.aspx then I am showing the Webform2.aspx as a alert message, and I am opening this Webform2.aspx using window.open
From the Webform2.aspx the user may go back to the Webform1.aspx and fill the values or he may submitting the Webform1.aspx , from the Webform2.aspx without filling the required fields in Webform1.aspx
When I am submitting the Webform1.aspx from Webform2.aspx, the values which I entered in Webform1.aspx is not retaining.
I have already set the page, controls viewstate=true in Webform1.aspx
I am Using the below code to submitting the Webform1.aspx from Webform2.aspx
window.opener.location.href = "../order/ExistingOrder.aspx?type=save&QLoginid="+str.replace(/&/,"%26")+"&OrderId="+orderId.value
I am displaying the Webform2.aspx based on the Webform1.aspx input,
For example if the user didn't fill some field in Webform1.aspx then I am showing the Webform2.aspx as a alert message, and I am opening this Webform2.aspx using window.open
From the Webform2.aspx the user may go back to the Webform1.aspx and fill the values or he may submitting the Webform1.aspx , from the Webform2.aspx without filling the required fields in Webform1.aspx
When I am submitting the Webform1.aspx from Webform2.aspx, the values which I entered in Webform1.aspx is not retaining.
I have already set the page, controls viewstate=true in Webform1.aspx
I am Using the below code to submitting the Webform1.aspx from Webform2.aspx
window.opener.location.href = "../order/ExistingOrder.aspx?type=save&QLoginid="+str.replace(/&/,"%26")+"&OrderId="+orderId.value