Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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)
Syntax
'Declaration
Protected Friend Function View ( _
viewName As String, _
model As Object _
) As ViewResult
protected internal ViewResult View(
string viewName,
Object model
)
protected public:
ViewResult^ View(
String^ viewName,
Object^ 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.
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.