|   | DataContextConfigureView(String, Object) Method | 
        
        
            Configures a simple view with common view bag parameters.
            
        
        Namespace: GSF.Web.ModelAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic void ConfigureView(
	string routeID,
	Object viewBag
)
Public Sub ConfigureView ( 
	routeID As String,
	viewBag As Object
)
public:
void ConfigureView(
	String^ routeID, 
	Object^ viewBag
)
member ConfigureView : 
        routeID : string * 
        viewBag : Object -> unit function ConfigureView(routeID, viewBag);
Parameters
- routeID  String
- Route ID for view, if any (e.g., AddNew or ShowDeleted).
- viewBag  Object
- Current view bag.
 Remarks
Remarks
            This is normally called from controller before returning view action result.
            For normal MVC views the common route is "{controller}/{action}/{id}", the {id} of
            the route is what is requested as the routeID parameter. In many
            use cases this is a primary key or action value for the page, e.g., "ShowDeleted".
            
 See Also
See Also