Controller.View Method (String, String)
Creates a ViewResult object using the view name and master-page name that renders a view to the response.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Protected Friend Function View ( _ viewName As String, _ masterName As String _ ) As ViewResult 'Usage Dim viewName As String Dim masterName As String Dim returnValue As ViewResult returnValue = Me.View(viewName, masterName)
Parameters
- viewName
- Type: System.String
The name of the view that is rendered to the response.
- masterName
- Type: System.String
The name of the master page or template to use when the view is rendered.
Show: