Category / Section
Is it possible to avoid page postback in ASP.NET Webforms Menu?
You can prevent postback while clicking on the root menu by calling client side event on each root menu item which will return false value
ClientOnItemSelect="Dummy()"
function Dummy() { return false; }