FileUpload Control

  • Thread starter Thread starter bthumber
  • Start date Start date
B

bthumber

I trying to save a file using the FileUpload control but it tells me that
there is no file. Please see code:
void SaveFile()
{
if (FileUpload1.HasFile) // fails here
{
string filepath ...
}

Is there something else I need to do first???
 
Back
Top