Hi,
I have taken some textbox inside gridview and able to insert data from textbox to database, Now I want to fetch data from database in to textbox which is there inside gridview.
How i ll do this?
Please help..
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
KalaiPosted Feb 17, 2014, 1:41 AM
rachayita jaiswalPosted Feb 17, 2014, 1:24 AM
Thanks for reply
this is my code :
but I am facing Issue:
" The name 'Question' does not exist in the current context"
I want it onSelectIndexChanged gridview property.
KalaiPosted Feb 17, 2014, 1:04 AM
Customer.aspx.cs
=================
dataSet = BindCustomerDetail();
DataTable customerTable = dataSet.Tables["Customer"];
grid.DataSource = customerTable ;
grid.DataBind();
Customer.aspx
=================