2

この問題について助けが必要です。データテーブルを正常に動作する Excel ファイルにエクスポートしています。問題は、列の 1 つをドキュメントへのハイパーリンクにしようとしているのですが、Excel ファイルの作成を開始すると、このエラーが発生することです。よろしくお願いいたします。

「この操作は、相対 URI ではサポートされていません。」

using OfficeOpenXml;
using OfficeOpenXml.Table;

public void ExportExcelFile(System.Data.DataTable excelData, string excelSheetName)
    {
        using (var package = new ExcelPackage())
        {
            ExcelWorksheet ws = package.Workbook.Worksheets.Add(excelSheetName);

            int rowCount = 1;
            foreach (DataRow rw in excelData.Rows)
            {
                //excelData.Columns.RemoveAt(0);
                rowCount += 1;
                for (int i = 1; i < excelData.Columns.Count + 1; i++)
                {
                    // Add the header the first time through 
                    if (rowCount == 2)
                    {
                        ws.Row(1).Style.Font.Bold = true;
                        ws.Cells[1, i].Value = excelData.Columns[i - 1].ColumnName;
                    }
                    ws.Column(i).AutoFit();

                    //THIS IS THTE PROBLEM
                    string hyperlink = "<a href='~/Documents/DownloadFile.aspx?id=" + rw["DocPk"].ToString() + "'>" + rw["Drawing Id"].ToString() + "</a>";
                    ws.Cells[i, 7].Hyperlink = new Uri(hyperlink, UriKind.RelativeOrAbsolute);  

                    ws.Cells[rowCount, i].Value = rw[i - 1].ToString();
                }
            }

            MemoryStream Result = new MemoryStream();
            package.SaveAs(Result);
            Response.ClearContent();
            Response.OutputStream.Write(Result.GetBuffer(), 0, Result.GetBuffer().Length);
            Response.OutputStream.Flush();
            Response.OutputStream.Close();
            byte[] byteArray = Result.ToArray();
            Response.AddHeader("Content-Disposition", "attachment; filename=" + excelSheetName + ".xlsx");
            Response.AddHeader("Content-Length", byteArray.Length.ToString());
            Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
            Response.BinaryWrite(byteArray);
            Response.End();
        }
    }
4

3 に答える 3

3

Excel ドキュメントには相対する URL がないため、Excel は単に相対 URLをサポートしていません。すべての URL を完全修飾する必要があります。

string hyperlink = String.Format("http://{0}/Documents/DownloadFile.aspx?id={1}",
   Page.Request.Url.Host,
   rw["DocPk"].ToString());

ws.Cells[rowCount, i].Hyperlink = new Uri(hyperlink, UriKind.Absolute);
ws.Cells[rowCount, i].Value = rw["Drawing Id"];

http ://UriKind.Absolute.

于 2013-09-23T21:22:51.263 に答える
1

これが修正された実用的な解決策です。マイクが正しい方向に向けるのを手伝ってくれてありがとう

    public void ExportExcelFile(System.Data.DataTable excelData, string excelSheetName)
    {
        using (var package = new ExcelPackage())
        {
            ExcelWorksheet ws = package.Workbook.Worksheets.Add(excelSheetName);
            HtmlAnchor lnkOpen = new HtmlAnchor();
            int rowCount = 1;
            foreach (DataRow rw in excelData.Rows)
            {

                rowCount += 1;
                for (int i = 1; i < excelData.Columns.Count + 1; i++)
                {
                    // Add the header the first time through 
                    if (rowCount == 2)
                    {
                        ws.Row(1).Style.Font.Bold = true;
                        ws.Cells[1, i].Value = excelData.Columns[i - 1].ColumnName;
                    }
                    ws.Column(i).AutoFit();

                    if (excelData.Columns[i - 1].ColumnName.ToString() == "Drawing Id" )
                    {
                     //var hyperlink = String.Format("Http://" + Page.Request.Url.Host + "/Documents/DownloadFile.aspx?id={0}", rw["DocPk"].ToString());
                     var hyperlink = String.Format(ConfigurationManager.AppSettings["DocumentManagerURL"] + "Documents/DownloadFile.aspx?id={0}", rw["DocPk"].ToString());
                      ws.Cells[rowCount, i].Hyperlink = new Uri(hyperlink, UriKind.Absolute);
                      ws.Cells[rowCount, i].Style.Font.UnderLine = true;
                      ws.Cells[rowCount, i].Style.Font.Color.SetColor(System.Drawing.Color.Blue);
                      ws.Cells[rowCount, i].Value = rw["Drawing Id"]; 

                    }
                    else{
                      ws.Cells[rowCount, i].Value = rw[i - 1].ToString();  
                    }

                }
                //excelData.Columns.RemoveAt(7);
            }

            MemoryStream Result = new MemoryStream();
            package.SaveAs(Result);
            Response.ClearContent();
            Response.OutputStream.Write(Result.GetBuffer(), 0, Result.GetBuffer().Length);
            Response.OutputStream.Flush();
            Response.OutputStream.Close();
            byte[] byteArray = Result.ToArray();
            Response.AddHeader("Content-Disposition", "attachment; filename=" + excelSheetName + ".xlsx");
            Response.AddHeader("Content-Length", byteArray.Length.ToString());
            Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
            Response.BinaryWrite(byteArray);
            Response.End();
        }
    }
于 2013-09-24T14:13:36.630 に答える