我有一个类并创建一个实例并在我的索引中填充一个属性,但是当我在视图中按下提交按钮并再次返回到我的索引操作时,我的类的属性为空。
当我返回操作并检索数据时,如何保存数据?可能吗?
我在我的索引和填充主题中使用了viewbag
and viewdata
,但是当再次返回索引操作时,所有主题都为空:(
public class myclass
{
public string tp { get; set; }
}
public class HomeController : Controller
{
//
// GET: /Home/
myclass myc = new myclass();
public ActionResult Index()
{
myc.tp = "abc";
return View(myc);
}
}
看法:
@model MvcApplication2.Controllers.myclass
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
</head>
<body>
@using (Html.BeginForm())
{
<input id="Submit1" type="submit" value="submit" />
}
</body>
</html>