如何使用文本框字符串值
设置标签的值public ActionResult getComment(string comBox)
{
var commentBox = comBox;
Convert.ToString("commentBox");
Console.Write("commentBox");
return PartialView("getComment");
}
在我的部分视图中,我想在标签上显示此字符串。
怎么做?
基本上是一个评论框,我想实现。
答案 0 :(得分:0)
如果我理解您的问题,您希望在部分视图的标签中显示评论
部分查看getComment.cshtml
<label>@ViewBag.Comment</label>
动作
public ActionResult getComment(string comBox)
{
var commentBox = comBox;
ViewBag.Comment=commentBox;// or whatever string you want
return PartialViewResult();
}