Hi,
Here is the code,
tabbar = new dhtmlXTabBar("tabbar", "top");
tabbar.setImagePath("dhtmlx/tabbar/imgs/");
tabbar.setStyle("dhx_skyblue");
tabbar.addTab("home", "Home", "100px");
tabbar.addTab("anothertab", "Another Tab", "100px");
tabbar.setHrefMode("iframe")
tabbar.setContentHref("home", "Home.aspx");
tabbar.setContentHref("anothertab", "Test.aspx");
tabbar.setTabActive("home");
Every time I click on each tab, the aspx will be reloaded again. Did I do anything wrong? Or there’s a way to avoid it?