我是MVC的新手。我试图通过当前日期&时间使用Viewdata.But它没有得到我的代码在这里
namespace FirstHelloWorldProjct.Controllers
{
public class HelloWorldController : Controller
{
//
// GET: /HelloWorld/
public ActionResult Index()
{
ViewData["CurrentTime"] = DateTime.Now.ToString();
return View();
}
}
}
我的查看代码
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<div>
This is Hello World...<br/>
The Current Date and time is <%= ViewData["CurrentTime"]%>
</div>
</body>
</html>
输出就在这里
This is Hello World...
The Current Date and time is <%= ViewData["CurrentTime"]%>
答案 0 :(得分:1)
我认为在Asp.net MVC中我们使用Razor语法作为下面的内容。
您需要使用@ViewData["CurrentTime"]
代替<%= ViewData["CurrentTime"]%>