如何在 .NET 中允许文件上传

本文关键字:文件 许文件 NET | 更新日期: 2023-09-27 18:32:57

我正在使用 JQuery 通过网站页面上的文件上传对话框将文件上传到我网站根文件夹中的文件夹。 当我使用 Casinni 在本地运行它时,这工作正常,但当我部署到使用 IIS 7 托管站点的服务器时,这将失败。 我是否需要在 IIS 中执行任何操作才能允许此类文件上传?

如何在 .NET 中允许文件上传

类似这些东西...

<%@ Page Language="C#" %>
<script runat="server">
    protected void Button1_Click(object sender, EventArgs e)
    {
        if (FileUpload1.HasFile)
            try
            {
            FileUpload1.SaveAs("C:''Uploads''" + 
                 FileUpload1.FileName);
            Label1.Text = "File name: " +
                 FileUpload1.PostedFile.FileName + "<br>" +
                 FileUpload1.PostedFile.ContentLength + " kb<br>" +
                 "Content type: " +
                 FileUpload1.PostedFile.ContentType;
        }
        catch (Exception ex)
        {
            Label1.Text = "ERROR: " + ex.Message.ToString();
        }
    else
    {
        Label1.Text = "You have not specified a file.";
    }
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Upload Files</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
        <asp:FileUpload ID="FileUpload1" runat="server" /><br />
        <br />
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" 
         Text="Upload File" />&nbsp;<br />
        <br />
        <asp:Label ID="Label1" runat="server"></asp:Label></div>
    </form>
</body>
</html>

获得这种"技能"的另一个来源 http://msdn.microsoft.com/en-us/library/aa479405.aspx

没关系。。。。误读了整件事。