これは私のモーダルポップアップがどのように見えるかです
<asp:TextBox ID="txtPatientID" AutoCompleteType="Disabled" runat="server" CssClass="csstextbox" Width="350px"></asp:TextBox>
<asp:Button ID="btnCheckPatientID" CssClass="cssbutton" runat="server" Text="Check" />
<asp:ModalPopupExtender ID="btnCheckPatientID_ModalPopupExtender" runat="server"
PopupControlID="panelCheckPatient" TargetControlID="btnCheckPatientID" BackgroundCssClass="modalbackground">
</asp:ModalPopupExtender>
<div class="modalpopup" id="panelCheckPatient" style="display: none">
<iframe id="iframeCheckPatient" runat="server" width="485px" src="Check_Patient.aspx"
height="485px" scrolling="auto"></iframe>
</div>
btnCheckPatientID をクリックすると、txtPatientID.Text パスをクエリ文字列として Modalpopup に渡す必要があります (modalpopup で iframe をロードします)。