How to access hidden value from child page
hi frnz ,
am creating one application in taht i want to access hidden field value from one child page and display it in another page
first page
----------
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div> </div><div> </div>
<div style="text-align:center" class="style44">Welcome To Fidelity Premium Finance</div>
<div> </div><div> </div>
<input type="hidden" name="returnurl" value="vinod" />
<input type="hidden" name="merchantdisplayname" value="vinnu" />
<div><asp:Button ID="btnProceed" runat="server" Width="15%" Text="Proceed" PostBackUrl="~/2.aspx" CssClass="style42"/></div>
</asp:Content>
second page
------------
i want to display the value of(returnurl) ie hidden value in second page
please give rep
Vinod
|