MasterPage に ImageButton があり、OnClick イベントが発生しません。マスターページのないページでは機能します。
http://www.quotehd.com/default.aspxにはマスターページがなく、検索に「面白い」という単語を入力すると機能しますが、 http: //www.quotehd.com/topics から検索しようとするとマスターページを使用するものは、マスターページからコードを起動しません。
これはMasterPageのaspxコードです:
<asp:ImageButton ID="lnkGo1" runat="server" CssClass="searchsubmit"
ImageUrl ="/content/themes/pin/images/search.png" OnClick="lnkGo1_Click"
CausesValidation="False" ViewStateMode="Disabled" EnableViewState="False">
</asp:ImageButton>
C# マスターページ コード:
protected void lnkGo1_Click(object sender, ImageClickEventArgs e)
{
Response.Redirect("~/quotes/search/words/" + HttpUtility.HtmlEncode(txtSearch1.Text));
}
マスターページを持たない /default.aspx でも同じコードが機能しますが、default.aspx でホームページにアクセスした場合のみです。