my web page in table is create but update and delete functionality is not worked.......to plz help me my html table
Data Display
Id
State Name
Edit
Delete
asp.net code public void DataLoad() { DataSet ds = obj.gd("select * from state where adminid='" + Session["idd"] + "'"); for (int i = 0; i < ds.Tables[0].Rows.Count;i++ ) { htmlTable.Append(""); htmlTable.Append("" + ds.Tables[0].Rows[i]["id"] + ""); htmlTable.Append("" + ds.Tables[0].Rows[i]["state"] + ""); htmlTable.Append("" + " " + ""); htmlTable.Append("" + " " + ""); htmlTable.Append(""); } PlaceHolder1.Contr