我有一个模式弹出窗口,在数据库表上插入新记录。除上传文件外,所有记录都插入成功。插入数据库表的文件名和文件夹上传的文件都没有。当我在页面上运行我的代码而不是从模式弹出窗口中运行代码时。我正在本地主机上工作。我的代码:
string myfileuploadpath; if (myAttachedFile.FileName != "")
{
fileuploadpath = "~\\myFiles\\" + myAttachedFile.FileName;
string myPath = Server.MapPath(myfileuploadpath);
myAttachedFile.SaveAs(myPath);
myitem.AttachedFiles = myfileuploadpath;
}
<asp:PlaceHolder ID="PlaceHolder1" Visible="false" runat="server">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:FileUpload ID="myAttachedFile" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:PlaceHolder>