データ変換を実行するために、html textarea 要素から読み取ろうとしています。
私のテキストエリアコード
<textarea rows="4" cols="50" class="txtArea@(i)">
このメソッドに実装しようとしています
public ActionResult About()
{
Document document = new Document();
try
{
PdfWriter.GetInstance(document, new FileStream(Server.MapPath("~/") + "downloads/" + "print.pdf", FileMode.Create));
document.Open();
List<ielement> htmlarraylist = iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList(
new StringReader(txtArea.Text), null);
for (int k = 0; k < htmlarraylist.Count; k++)
{
document.Add((IElement)htmlarraylist[k]);
}
Paragraph mypara = new Paragraph();
document.Add(mypara);
document.Close();
Response.Redirect("~/downloads/print.pdf");
}
catch (Exception ex)
{
txtArea.Text = ex.Message;
return View();
}
}
}
txtArea.Text
しかし、どのように実装するのかという各インスタンスでエラーが発生しますか?
エラー: textArea は現在のコンテキストに存在しません
コードを表示
` @{
ViewBag.Title = "About";
int i = 1;
}
<hgroup class="title">
<h1>@ViewBag.Title.</h1>
<h2>@ViewBag.Message</h2>
</hgroup>
<table style="background-color: lightgreen; border: solid 2px black;">
<tr>
<td>
<b>Name</b>
</td>
<td>
<b>Size</b>
</td>
<td>
<b>Preview</b>
</td>
<td>
<b>Read File</b>
</td>
<td>
<b>Convert File</b>
</td>
</tr>
@foreach (var file in Model)
{
<tr>
<td>
@file.Name
</td>
<td>
@(file.Size / 1000) KB
</td>
<td>
@(file.extension)
</td>
<td>
<input id="btnreadfile@(i)" name="@file.Name" class='btnClick' type="button" value="Read File"/>
<textarea rows="4" cols="50" class="txtArea@(i)" name ="txtArea">@(ViewBag.DataVal)
</textarea>
</td>
<td>
<input id="btnconvertfile@(i)" name="@file.Name" class='btnClick' type="button" value="Convert File"/>
</td>
</tr>
i++;
}
</table>
<textarea></textarea>
<aside>
<h3>Aside Title</h3>
<p>
Use this area to provide additional information.
</p>
<ul>
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>
</aside>
<script>
$(".btnClick").click(function () {
var selectedId = $(this).attr("id").replace("btnreadfile", "");
$.ajax({
url: "/Home/ReadTextFile",
type: "GET",
data: { fileName: $(this).attr("name") },
DataType: "text",
success: function (str) {
$(".txtArea" + selectedId).val(str);
},
error: function (err) {
alert(err);
}
});
});
</script>`
私が達成しようとしているのは、変換ボタンをクリックして、テキストエリア内のテキストをpdfファイルに変換することです。