简体   繁体   中英

File Upload in database using fileupload control

I have a FileUpload Control and a image control on asp.net page as follows :

<tr>
                <td>&nbsp;</td>
                <td align="left">
                     <asp:Image ID="profileimage" runat="server" ImageUrl="~/Images /images2.jpg" 
                     Width="150px" Height="150px" />
                </td>
                <td>&nbsp;</td>
                <td colspan="2" align="left">
                    <asp:FileUpload ID="Fu" runat="server" Width="550px" />
                </td>
            </tr>

Now how to get access of the filepath uploaded in the fileupload control using code behind and store it in database

try:

protected void btnSubmit_Click(object sender, EventArgs e) 
 {
  if (Fu.HasFile) {
  string filepath = Fu.PostedFile.FileName;
  //save the file to the server
  Fu.PostedFile.SaveAs(Server.MapPath(".\\") + file);
  lblStatus.Text = "File Saved to: " + Server.MapPath(".\\") + file;

 }
} 

Use this Code:

protected void btnSubmit_Click(object sender, EventArgs e) 
{
   foreach (UploadedFile upload in Fu.UploadedFiles)
                {
                    Fu.TargetFolder = "/Attachment/ClientProfile";

                    path = Server.MapPath(Fu.TargetFolder) + "\\" + upload.GetName();
                    upload.SaveAs(path);

                }
//Here give ImageName=path to save in database.
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM