or
On one of our sites we have a TabStrip in the MasterPage of an MVC2 site.
Normally users can click on a tab to navigate to the path visible when hovering over the tab.
When the tab is selected as the active tab, users can hover over it to see the intended path, but clicking the tab does not re-load the page (the intended behavior).
Any ideas on how to achieve this effect?
A co-worker said that we're using TabStrips on an MVC4 site and clicking the selected tab refreshes the page.

var window;function OpenWindow(){ window = $find('<%= mywindow.ClientID %>'); window.show();}function CloseWindow(){ window.hide();}Hi, i want the RadDatePicker to view multible months, so i used RadCalendar with MultiViewColumns="3" as shared calendar
and this is my code
<telerik:RadDatePicker ID="RadDatePicker1" runat="server" SharedCalendarID="RadCalendar1" > </telerik:RadDatePicker> <telerik:RadCalendar ID="RadCalendar1" Runat="server" MultiViewColumns="3" EnableMultiSelect="False" AutoPostBack="True" > </telerik:RadCalendar>now when clicking on date popup button, postback is done and i'm not able to select a date.

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1" EnablePageHeadUpdate="False"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="typeRadio"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="uplPanel" UpdatePanelCssClass="" /> <telerik:AjaxUpdatedControl ControlID="certifiedPanel" UpdatePanelCssClass="" /> <telerik:AjaxUpdatedControl ControlID="instructionsLiteral" UpdatePanelCssClass="" /> <telerik:AjaxUpdatedControl ControlID="RequiredFieldValidator8" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="adminOfficeCombo"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="uplCombo" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="SaveBtn"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="content" LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelCssClass="" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>RadWindowManager2.RadConfirm("Server radconfirm: Are you sure?", null, 330, 180, null, "Server RadConfirm", null);it didn't work with "contentMenu"
protected void RadMenu1_ItemClick(object sender, RadMenuEventArgs e) { int radGridClickedRowIndex; radGridClickedRowIndex = Convert.ToInt32(Request.Form["radGridClickedRowIndex"]); switch (e.Item.Text) { case "Delete": RadWindowManager2.RadConfirm("Server radconfirm: Are you sure?", null, 330, 180, null, "Server RadConfirm", null); SqlConnection con3 = AllClass.dbConnection(); string sd = "delete from tbPlan where PlanID=" + this.RadGrid2.MasterTableView.DataKeyValues[radGridClickedRowIndex]["PlanID"] + ""; AllClass.saveData(sd,con3); show(this.RadDataPager1.CurrentPageIndex); getcnt(); break; } }