Author: bing25 | Posted on: 9/15/2010 3:31:50 PM | Views : 1254

 I have a Menu control on MasterPage. Even though I set Target="_blank" why doesn't it open in new window? What do I do to open the page in new window?
Thanks for the help!!
Protected Sub Menu1_MenuItemClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu1.MenuItemClick If Menu1.SelectedValue = "Demand Reservation" Then rqstType = "Demand" Response.Redirect("frm_Reservation.aspx") ElseIf Menu1.SelectedValue = "Standing Reservation" Then rqstType = "Standing" Response.Redirect("frm_Reservation.aspx") End Sub

<asp:Menu ID="Menu1" runat="server" Orientation="Horizontal" OnMenuItemClick="Menu1_MenuItemClick" style="height: 19px&q ...

Go to the complete details ...