将返回字符串分配给MVC中的标签

时间:2014-03-05 09:20:42

标签: javascript asp.net asp.net-mvc

如何使用文本框字符串值

设置标签的值
public ActionResult getComment(string comBox)
{
    var commentBox = comBox;
    Convert.ToString("commentBox");
    Console.Write("commentBox");
    return PartialView("getComment");
 }

在我的部分视图中,我想在标签上显示此字符串。

怎么做?

基本上是一个评论框,我想实现。

1 个答案:

答案 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();
}