Hello Guys
I need your help to make this code working fine i know the it will have many coding mistakes and for that i decide to post here, to get help from you. In below code i am looking to update a row depending on CommandArgument= CVNum, I have used two ListView
one to show the CV and the other one is to Update it becuase if i used the EditItem in same Listview i will get many problem with FileUpload as well as RequiredFieldValidator. I will be thanks if you help me with:
- check and update the code into correct way.
- Need your feedback if the FileUpload will work with ListView or not and if yes wish if you explain how.
protected void UpdtCVBtn_Command(object sender, CommandEventArgs e)
{
SqlConnection EdCVCon = new SqlConnection(sc);
SqlCommand cmd = new SqlCommand();
if (Session["UsrNme"] != null)
{
string sq ...
Go to the complete details ...