Delete admin menu ( created from plugin )

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 Jahre weitere
Hi, How to delete the admin menu I created using following code?

var menuItem = new SiteMapNode()
{
    
        Title = "Test",
  ControllerName = "Test",
  ActionName = "Test",
  Visible = true,
  RouteValues = new RouteValueDictionary() { { "area", "" } },
};


I have uninstalled and deleted the plugin and this isn't in the
sitemap.conf
file.

still it appears in the menu. How to remove this?
7 Jahre weitere
'touch' your global.asax file to force ASP.NET recompile.   If that does not work, delete temporary ASP.NET files
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.