Форма внутри другой формы, на основе мастер-страницы ASP.NET с#
Я пытаюсь открыть форму внутри другой формы при нажатии на кнопку Добавить новую для вставки записи, но моя форма находится на главной странице.. любая помощь в этом, пожалуйста ..
в приведенном ниже коде я пишу скрипт , чтобы открыть его в новой вкладке, но мне нужно открыть внутри страницы..
Что я уже пробовал:
<%@ Page Title="" Language="C#" MasterPageFile="~/AquaBaby.master" AutoEventWireup="true" CodeFile="Menu.aspx.cs" Inherits="Menu" %> <asp:Content ID="Content1" ContentPlaceHolderID="Title" Runat="Server"> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="head" Runat="Server"> <link href="css/bootstrap.min.css" rel="stylesheet" /> <link href="css/Style.css" rel="stylesheet" /> <script src="Jquery/jquery-3.3.1.min.js"></script> <script src="js/bootstrap.min.js"></script> <script type = "text/javascript"> function SetTarget() { document.forms[0].target = "_blank"; } </script> </asp:Content> <asp:Content ID="Content3" ContentPlaceHolderID="Body" Runat="Server" EnableViewState="True" > <asp:Label ID="Label1" runat="server" Text="Search:" Font-Bold="True" Font-Size="Medium"></asp:Label> <asp:TextBox ID="Searchtxt" runat="server" Height="24px" Width="182px" CssClass="textbox1"></asp:TextBox> <asp:Button ID="Button1" runat="server" Text="Search" CssClass="btn1" Font-Bold="True" Height="27px" Width="131px" OnClick="Button1_Click" OnClientClick = "SetTarget();" />