控制器
Public Class HelloWorldController
Inherits System.Web.Mvc.Controller
'
' GET: /HelloWorldController
Function PrintMessage() As ActionResult
End Function
End Class
网址请求
http:// localhost:1430 / HelloWorld / PrintMessage
问题
如何在本地主机上的网络浏览器中打印出一条消息,上面使用“Mvc.Controller”,方法和相应的 URL 请求?
intended
只需按下链接或按钮即可调用方法(操作) 。