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
Safeer Safeer
NA
201
37.9k
grid updation
Aug 24 2013 4:42 AM
here it is my class grid
protected void gvclass_RowUpdating1(object sender, GridViewUpdateEventArgs e)
{
classinfo infoclass = new classinfo();
classsp spclass = new classsp();
GridViewRow row = gvclass.Rows[e.RowIndex];
infoclass.classId = decimal.Parse(gvclass.DataKeys[e.RowIndex].Value.ToString());
infoclass.className = ((TextBox)row.FindControl("txtclassname")).Text;
infoclass.noOfSeats = int.Parse(((TextBox)row.FindControl("txtno")).Text);
int a = spclass.ClassEdit(infoclass);
gvclass.EditIndex = -1;
gridfill();
}
after clicking editt
gettin' error
Reply
Answers (
11
)
error
how to add image