1
  • .doc が正しく作成されていません。単語の代わりに完全な html タグを使用して作成する

msワード文書の下のデータのように

<div id="ctl00_ContentPlaceHolder1_design" style="width:600px">
        <table id="ctl00_ContentPlaceHolder1_rpt" border="0" width="600"> 

HTMLタグをプレーンコンテンツに変換する方法は?

aspx.cs

 protected void btnMail_Click(object sender, EventArgs e)
 {
     Response.Clear();
     try
     {
         System.IO.StringWriter stringWrite = new System.IO.StringWriter();
         System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
         design.RenderControl(htmlWrite);
         string strBuilder = stringWrite.ToString();
         string strPath = Request.PhysicalApplicationPath + "\\Temp\\WeeklyReport of " + Projname + ".doc";


         if (File.Exists(strPath))
         {
             var counter = 1;
             strPath = strPath.Replace(".doc", " (" + counter + ").doc");
             while (File.Exists(strPath))
             {
                 strPath = strPath.Replace("(" + counter + ").doc", "(" + (counter + 1) + ").doc");
                 counter++;
             }
         }
         var doc = DocX.Create(strPath,DocumentTypes.Document);
         doc.InsertParagraph(strBuilder);
         doc.Save();
     }
 }
4

1 に答える 1

0

必要な div 内のすべてのテキストである場合は、これを行うことができます。

ASP.NET

<div runat="server" id="design" style="width:600px">
 SOME TEXT <span> text </span>
</div>

C#:

string allTextInsideDiv = design.InnerText; //You should get "SOME TEXT text"

編集: div 内に ASP.NET サーバー コントロールがあるため、InnerText を取得できませんでした。したがって、解決策は、HTML コードを取得し、XmlDocument または HtmlDocument オブジェクトを使用してコンテンツを読み込むことです。次に、InnerText を抽出します。

サンプルコード:

System.IO.StringWriter stringWrite = new System.IO.StringWriter(); 
System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite); 
div_myDiv.RenderControl(htmlWrite); 
string myText = stringWrite.ToString().Replace("&", "&amp;");
XmlDocument xDoc = new XmlDocument(); 
xDoc.LoadXml(myText); 
string rawText = xDoc.InnerText;
于 2015-05-21T06:18:22.540 に答える