Click or drag to resize

ControllerStandardDataItemClassCreateOnActionResultGet Method

This called from method Create.

This method reset object UploadFile.

And set object ViewBag with method CreateSetViewBag.

and present view Create with a new data item of method GetNewDataItem.

Namespace:  SOWIWeb.Helper
Assembly:  SOWIWeb.Helper (in SOWIWeb.Helper.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax
protected virtual ActionResult CreateOnActionResultGet()

Return Value

Type: ActionResult

[Missing <returns> documentation for "M:SOWIWeb.Helper.ControllerStandard`1.CreateOnActionResultGet"]

Examples
Set a new content partial
protected override ActionResult CreateOnActionResultGet()
{
    ViewBag.ContentName = "_CreateContentPartialTemplateFile";
    return base.CreateOnActionResultGet();
}
See Also