Base web page implementation of the IView interface. Instead of implementing the IView interface your web page view may simply inherit the WebFormView class.

Namespace:  MVCSharp.Webforms
Assembly:  MVCSharp (in MVCSharp.dll)
Version: 0.8.5217.34148

Syntax

C#
public class WebFormView : Page, IView
Visual Basic (Declaration)
Public Class WebFormView _
	Inherits Page _
	Implements IView
Visual C++
public ref class WebFormView : public Page, 
	IView

Remarks

It is recommended to use the generic version of this class - WebFormView<(Of <(T>)>) - with a strongly typed association to the controller and, thus, higher type safety.

Inheritance Hierarchy

System..::.Object
  System.Web.UI..::.Control
    System.Web.UI..::.TemplateControl
      System.Web.UI..::.Page
        MVCSharp.Webforms..::.WebFormView

See Also