添加控制器
访问测试
- 默认控制器访问index
public string Index()
{
return "This is my default action...";
}
- 特定访问路径
public string Welcome()
{
return "This is the Welcome action method...";
}
文章来源:https://www.toymoban.com/news/detail-529014.html
- 特定路径访问,带参数
public string WelcomeWithParm(string name, int numTimes = 1)
{
return HtmlEncoder.Default.Encode($"Hello {name}, NumTimes is: {numTimes}");
}
文章来源地址https://www.toymoban.com/news/detail-529014.html
到了这里,关于ASP.NET Core MVC -- 控制器的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!