マスター ページ、複数の RequiredFieldValidators、および Web Toolkit オートコンプリート エクステンダーを使用するページがあります。次のコードは、ページの最小限の部分のみを示しています。
<%@ Page Language="C#"
AutoEventWireup="true"
CodeFile="Login.aspx.cs"
MasterPageFile="~/master.master"
Inherits="Login" %>
<asp:Content id="Content1"
contentplaceholderid="ContentPlaceHolder1"
runat="server">
<asp:UpdatePanel ID="pnlUpdate" runat="server">
<ContentTemplate>
<div>
<asp:ImageButton class="submitButton"
imageurl="images/button_submit.gif"
id="btnSubmit"
runat="server"
onclick="btnSubmit_ServerClick"/>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>
分離コード:
protected void btnSubmit_ServerClick
(object sender, ImageClickEventArgs e)
{
//breakpoint here does not get hit
}
<form runat="server">
タグはマスターページにあります。上記のコードは onclick イベントを発生させません。マスター ページを削除してフォーム タグをページに追加すると、機能します。マスター ページのフォーム タグはサポートされていませんか、それとも何らかの形で機能するはずですか?
代替テキスト http://digitalcopy.warnerbros.com/images/mainmenu.gif?provider=00079&disc=03403AAA-1D20-47F2-91FA-5EE632832659