0

控制器


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只需按下链接或按钮即可调用方法(操作) 。

4

1 回答 1

0

您可以使用Content方法返回一个字符串:

return Content("Hello World")

如果要格式化,请创建一个视图并将字符串作为模型返回。

于 2012-11-02T18:58:50.967 回答