Sir after login I come on profile page where information is showing like :
First Name: Sachin
Last Name : Agarwal
but it is not editable you can just see and information is loading from database so now if you want to edit this information so I create one button Edit on same page when someone will click on edit button so new page will be open and I did coding in its
CS page in void Page_Load(object sender, EventArgs e)
SqlConnection con = new SqlConnection(@"Data Source=USER-PC\SQLEXPRESS;Initial Catalog=Chitrakala;Integrated Security=True");
con.Open();
String id = Session["uname"].ToString();
string query = ("select* from Artist where User_Name='" + id + "'");
SqlCommand cmd = new SqlCommand(query, ...
Go to the complete details ...