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)

Syntax

'Declaration
Protected Friend Function View ( _
    viewName As String, _
    masterName As String _
) As ViewResult
protected internal ViewResult View(
    string viewName,
    string masterName
)
protected public:
ViewResult^ View(
    String^ viewName, 
    String^ 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.

Return Value

Type: System.Web.Mvc.ViewResult
The view result.

Remarks

The result object that is prepared by this method is written to the response by the MVC framework when the object is executed.

See Also

Reference

Controller Class

View Overload

System.Web.Mvc Namespace