Click here to Skip to main content
16,017,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I Have Sent Data from Gridview amd that data is bind to textboxs into another web form.And I Want To Update that Data which in textbox.But I m Failed plz Help Me.
Posted

Hi...

Use the Row Command event of grid view. In that u can find the records what you are selected on that time u can redirect to new page and show the date in text boxes
 
Share this answer
 
hello ,

you suppose to use sessions ..

for ex:

string s=dt.Rows[0]["gridview particular row/coloumn name"].ToString();

session["your session name"]= s.tostring();

then use this same session in another webform,

textbox1.text=session["your session name"].tostring();
 
Share this answer
 

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