ASP.NET ページのライトボックス内に送信フォームを表示する必要があります。ユーザー名が一意でないなどのエラーが送信フォームにある場合、ポストバックはライトボックスの外に ASP.NET ページをレンダリングします。どうすればその問題を解決できますか?
以下は、ライトボックスを含む .aspx ページのコード スニペットです。
<...>
<p>
QunatumMotors is located in Detroit. Please use the link below to contact us.</p>
<p>
<!--START CONTACT FORM OVERLAY-->
<!-- first overlay. id attribute matches the selector -->
<a href="**../informational/contactform.aspx"** rel="#overlay" style="text-decoration:none">
> Click here to contact us
</a>
<div class="simple_overlay" id="form_contact">
<!-- overlayed element -->
<div class="apple_overlay" id="overlay">
<!-- the external content is loaded inside this tag -->
<div class="contentWrap"></div>
</div>
</div>
<!--END CONTACT FORM OVERLAY-->
<p> </p><p> </p>
<...>
contactform.aspx は、フォーム フィールド、フィールド バリデータ、エラーを表示するためのラベル (ユーザー名が一意でないなど)、および送信ボタンを備えた単なる標準の .aspx ページです。contactform.aspx でポストバックが発生すると、(もちろん) ライトボックスの外にレンダリングされます。ライトボックス内に contactform.aspx のポストバックを表示するにはどうすればよいですか? ご協力いただきありがとうございます!