TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Smart Lucky
NA
555
639.3k
GridView
Aug 4 2011 1:07 AM
Hi Dudes
I have gridview and it is papulated at run time and when i edit row and row is sucessfully edited and i want to id column will not be edited how can i do this can any one help me...?
protected void Edit_Click(object sender, EventArgs e)
{
//con.Open();
LinkButton lbn = sender as LinkButton;
TableCell cell = lbn.Parent as TableCell;
GridViewRow grv = cell.Parent as GridViewRow;
GridView1.EditIndex = grv.RowIndex;
ShowData();
TitleMethod();
// con.Close();
}
Reply
Answers (
2
)
How to maintain state for a pae in repeater while paging
GridView