This question is locked. New answers and comments are not allowed.
"value" cannot be null or empty.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.ArgumentException: "value" cannot be null or empty.
Source Error:
|
Source File: c:\BACKUP\GDOT.TPRO.MVCWebApp\GDOT.TPRO.RazorUI\Areas\ProjectsManagement\Views\Shared\EditProjectControl.cshtml Line: 100
Stack Trace:
|
i am trying to load a partial view as you see above and i am getting an errror
here is the file
@(
Html.Telerik().PanelBar()
.Name("PanelBar")
.HtmlAttributes(new { style = "width:920px;text-align:left;" })
.Items(panelbar =>
{
panelbar.Add()
.Text("General")
.LoadContentFrom("GeneralTabAction", "Project")
.Expanded(false);
}))
)
here is my project controller
[ActionName("GeneralTabAction")]
public ActionResult GeneralTabAction()
{
return PartialView("GeneralTab");
}
the generalTab file is under shared directory. thanks for the help