Hello
I was using "EditItemTemplate" into my listview to edit the selected row to update it, but for some reasons i decide to change to make it work in another way that if the user click on edit button in main ListView then it will transfer user to another ListView
to edit the row now i am facing a problem when user finish updating and click on "UpdtCVBtn" Button.
protected void UpdtCVBtn_Click(object sender, EventArgs e)
{
HttpCookie cookie = Request.Cookies.Get("Location");
string Location = string.Empty;
SqlConnection cn = new SqlConnection(sc);
SqlCommand cmd = new SqlCommand();
Location = cookie.Value;
string sqlstatment = @"UPDATE CVs SET [Birthday]=@Birthday, [Gender]=@Gender, [PerInfo]=@PerfInfo,
[WorkEx]=@WorkEx, [Educ]=@Educ, [SchAndCert]=@SchAndCert, ...
Go to the complete details ...