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
Nethra R S
NA
310
334.1k
Cant get through this exception
Jul 6 2011 5:42 AM
Hi friends,
I have this update button code below:
protected void btnupdate_Click(object sender, EventArgs e)
{
try
{
GridViewRow r1=gvProjectDetails.SelectedRow;
int projectid=Convert.ToInt32(r1.Cells[1].Text);
pobj.updateprojectdetails(projectid, txtprojname.Text, txtprojdescription.Text, Convert.ToDateTime(txtstartdate.Text), Convert.ToDateTime(txtenddate.Text), Convert.ToInt32(drpteamsize.SelectedValue), Convert.ToInt32(txtduration.Text),drpstatus.SelectedItem.ToString());
lblmsg.Text = "Project Details updated successfully";
}
catch (Exception exc)
{
string msg = "Error:";
msg += exc.Message;
throw new Exception(msg);
}
populateGrid();
===============================
I have the same code for another page which works fine. But here i get a conversion failuer though i have converted(the red line in the code where i get this error). plzz correct me
Reply
Answers (
27
)
Checking to see if a SQL server database is being backed up
Want to use Crystal report for Website/Web-Application