Hello,
I want to create a custom module . now I add category.ascx and when I click on Edit button it appear like ( add items and Add Category).
but when I click on Add Category it go me to the blank page.
below the code
public ModuleActionCollection ModuleActions
{
get
{
var actions = new ModuleActionCollection();
{
{
actions.Add(GetNextActionID(), Localization.GetString("EditModuleCtgry", LocalResourceFile), "", "", "",
EditUrl("category"), false, SecurityAccessLevel.Edit, true, false);
actions.Add(GetNextActionID(), Localization.GetString("EditModule", LocalResourceFile), "", "", "",
EditUrl(), false, SecurityAccessLevel.Edit, true, false);
}
};
return actions;
}
}
any Idea please !