Im tring to use the fileupload control in vb.net 2008. Unfortunately when i upload something the code always indicate there is nothing. this is how im doing it
txtAttachment.SaveAs(Server.MapPath(".\") & txtAttachment.FileName)
or
txtAttachment.PostedFile.SaveAs(Server.MapPath(".\") & txtAttachment.PostedFile.Filename)
Both are not working, they dont return filenames.
Does anyone know what im supporsed to do here.
txtAttachment.SaveAs(Server.MapPath(".\") & txtAttachment.FileName)
or
txtAttachment.PostedFile.SaveAs(Server.MapPath(".\") & txtAttachment.PostedFile.Filename)
Both are not working, they dont return filenames.
Does anyone know what im supporsed to do here.