4
Answers

Easiest way to save a Visual C# 2008 as a 2005 project?

Photo of Erik Goodyear

Erik Goodyear

16y
4.8k
1

This was not a big issues until this course I am currently in, basic GUI.  Before I'd just make a new project at school on the 2005 version and eidt & copy the code from my 2008 .cs classes code into the 2005 classes.  Now that we have all kinds of other stuff going on like pictures in the Resources.resx and  stuff, I'm not sure I am going to be able to do the same thing.

Please tell me there is an easier way to save my 2008 project as a 2005??  I have tried the save options and have not seen much.

 

THANKS!!!

 

Erik

Answers (4)

1
Photo of Ravi Patel
NA 7.8k 532.7k 8y
Hi ,
check the update method of this url
http://www.c-sharpcorner.com/UploadFile/0c1bb2/insert-update-delete-in-gridview-using-single-stored-proce/
tryto get the firstname by this way (TextBox)GridView1.Rows[e.RowIndex].Cells[1].Controls[0]).Text.ToString();
Accepted
1
Photo of Ashwanikumar singh
NA 37 3.4k 8y
(TextBox)GridView1.Rows[e.RowIndex].Cells[1].Controls[0]).Text.ToString();
This worked for me thanks
0
Photo of Vinay Singh
NA 5.9k 126.2k 8y
Hi Please check the code
TextBox txtfName= (TextBox)e.Row.FindControl("txtFirstName");
stringfirstname =txtfName.Text;
and check the link also
http://stackoverflow.com/questions/6873973/how-to-find-control-in-templatefield-of-gridview