Controller.View Method (String, Object)
Creates a ViewResult object by using the view name and model 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, _ model As Object _ ) As ViewResult 'Usage Dim viewName As String Dim model As Object Dim returnValue As ViewResult returnValue = Me.View(viewName, model)
Parameters
- viewName
- Type: System.String
The name of the view that is rendered to the response.
- model
- Type: System.Object
The model that is rendered by the view.
Show: