したがって、フォームビューを Word にエクスポートするために、このコードを使用しています。その作品は素晴らしい..しかし、編集できないようにPDFにエクスポートしたい。または、本文が変更できないように単語ドキュメントにすることもできます。
protected void Button1_Click(object sender, EventArgs e)
{
Response.Clear();
Response.Buffer = true;
Response.AddHeader("content-disposition",
"attachment;filename=Report.doc");
Response.Charset = "";
Response.ContentType = "application/vnd.ms-word";
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
FormView1.DataBind();
FormView1.RenderControl(hw);
Response.Output.Write(sw.ToString());
Response.Flush();
Response.End();
}
問題は、上記のコードでコンテンツ タイプとヘッダー要素を変更しても、出力 pdf にエラーがあると表示されることです。
ドキュメントをpdfに変換するか、このコードを使用してpdfを生成したいです。
助けてください。
ありがとう..