Hello all
In the below code i am looking to check first if all fileuploads has file before process if statement, the below code is checking one FileUpload only. So can you help me with this case please
protected void EditAdsUpdateBtn_Click(object sender, EventArgs e)
{
SqlConnection EdCVCon = new SqlConnection(sc);
SqlCommand cmd = new SqlCommand();
var AdsNumL = EditAdsNumLbl.Text;
var UsrNme = Session["UsrNme"];
if (DropDownList3.SelectedValue == "no")
{
EditAdswrnglblsPanel.Visible = true;
editadsstutslbl.Text = "- Please select ads status";
}
else
{
}
if (DropDownList2.SelectedValue == "no")
{
EditAdswrnglblsPanel.Visible = true;
editadsco ...
Go to the complete details ...