Click here to Skip to main content
15,900,378 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
In .aspx page am taking one text box and one button.

<asp:Textbox id="txtName" runat="server" Text="sai"/>

<asp:Button id="btnSubmt" rumat="server" OnClick="btnSubmt_Click"/>

in code behid

protected void btnSubmit_Click"(object sender, Eventsargs e)
{
    txtName.Text="ravi";
}

In these events( InIt,PreInIt and InItComplete ) the value of a textbox will not be change it has a default value.
after clicking on button

In loadviewstate we have the previous value i want see the that value programatically how can i

please help me
Posted
Updated 4-Nov-14 3:07am
v2

1 solution

Check This

LoadViewState[^]

Hope it will help you.
 
Share this answer
 
Comments
Samatha Reddy G 4-Nov-14 9:05am    
sorry i already searched a lot in google? i didn't find any thing. i saw that link but it is not use full for me

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900