Controller中的代碼以下:spa
public class HomeController : Controller
{
//
// GET: /Home/
orm
public ActionResult Index()
{
ViewData["test"] = "wtt";
return View();
}get
public string GetALL()
{
return "wtt";
}
}string
在index中:it
方法一:經過viewdata方法傳值,此時index中直接調用@ViewData["test"];「test」是自隨便取的名字io
方法二:在對應index中經過form表單接收, action="/Home/GetALL" 如:form
<form action="/Home/GetALL" method="get">
<button type="submit">denglu</button>
</form>class