0

我用一些菜单项定义了一个母版页。我使用文件上传控件,我只是在显示文件内容以在另一个内容页面上打开它时遇到问题:newModel.aspx 页面。它的工作将但我无法显示内容,我收到一个错误:找不到文件'C:\ Program Files(x86)\ Common Files \ Microsoft Shared \ DevServer \ 10.0 \ C%3a%5cUsers%5chhassan%5cDocuments%5cVisual +Studio+2010%5cWebSites%5cKBD-2013%5cModel%5cTest.edd'。

C# MasterPage-代码:

protected void Open_btn_click(object sender, EventArgs e)
{
    bool fileOK = false;
    string SampleDocuments = Server.MapPath(string.Empty);
    if (FileUploadCtrl.HasFile)
    {
        string fileExtension = System.IO.Path.GetExtension(FileUploadCtrl.FileName).ToLower();
        string allowedExtension = ".edd";
        if (fileExtension == allowedExtension)
        {
            fileOK = true;
        }
    }
    if (fileOK == true)
    {

        string fileName = SampleDocuments + "\\Model" + "\\" + FileUploadCtrl.FileName;
        Response.Redirect("~/Model/newModel.aspx?fileName=" + fileName);
    }

newModel 页面代码:

protected void Page_Load(object sender, EventArgs e)
{
    String fileName = HttpUtility.UrlEncode(Request.QueryString["fileName"]);
    this.DiagramWebControl1.LoadBinaryDocument(fileName);
}
4

1 回答 1

1

如果您的应用程序在托管模式下运行(IIS、IIS 开发服务器),您必须使用它Server.MapPath("~")来获取实际目录。默认情况下,当前工作目录指向您的 Web 服务器的工作目录。有关更多详细信息:http: //msdn.microsoft.com/de-de/library/system.web.httpserverutility.mappath.aspx

于 2013-05-16T11:27:53.827 回答