I use
FileUpload.Filename = lbl1.text.ToString();
FileUpload.SaveAs(Server.MapPath("~/Photo/AllPhotoes/" + FileUpload.FileName));
and i got Error: Property or indexer 'System.Web.UI.WebControls.FileUpload.FileName' cannot be assigned. it is read only.
I want to save image with label name which is hidden. and it get new value each time.
how can i change image name with label name.
help me....