Hello
As the editing the Listview in asp.net had some problem such upload images, and cascading dropdownlist. So i decide to create my own way to edit all or some column row into a table so when user click of edit button he will taken him to another view into
same page and then bind my own edit view. So how i can update the below sql statement and C# code to make update the row. For example: "(update [Birthday], [Gender], [PerInfo], [WorkEx], [Educ], [SchAndCert],[Langu],[Hobbies], [citiz]) where CVNum = @CVN)
And the CVN is querystring
HttpCookie cookie = Request.Cookies.Get("Location");
string Location = string.Empty;
if (Session["UsrNme"] != null)
{
Location = cookie.Value;
using (SqlConnection cn = new SqlConnection(sc))
{
string sqlstatment = @"INSERT INTO ...
Go to the complete details ...