行动方法
当用户输入 URL 时,例如: http : //example-website.com/Example/HelloWorld,MVC 应用程序将使用路由规则来解析此 URL 并提取子路径,这将确定控制器,操作和可能的参数。对于上面的 url,结果将是/ Example / HelloWorld,默认路由规则结果提供控制器的名称:Exmaple 和动作的名称:HelloWorld。
public class ExampleController: Controller
{
public ActionResult HelloWorld()
{
ViewData["ExampleData"] = "Hello world!";
return View();
}
}
上面的 ActionResult 方法 HelloWorld
将呈现名为 HelloWorld 的视图,然后我们可以使用 ViewData 中的数据。