我有一个标签,我需要在该标签中显示值,并且我已在控制器中为该标签分配值..
这是模型
namespace MvcSampleApplication.Models
{
public class labelsdisplay
{
public string labelvalue { get; set; }
}
}
这是我的控制器
namespace MvcSampleApplication.Controllers
{
public class LbelDisplayController : Controller
{
public ActionResult Index()
{
labelsdisplay lbldisx = new labelsdisplay();
string name = "ABC";
lbldisx.labelvalue = name;
return View(lbldisx);
}
}
}
这是视图(强类型视图)
@model MvcSampleApplication.Models.labelsdisplay
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
@using (@Html.BeginForm())
{
@Html.LabelFor(m=>m.labelvalue)
}
我的问题是无法显示值(“ABC”),而不是在视图中显示该标签中的“labelvalue”......有人请提出任何解决方案......关于这个......
非常感谢..