aspxページのコード
<asp:LoginView ID="loginView1" runat="server" EnableViewState="false">
<LoggedInTemplate>
<asp:Button ID="btnWatchlist" runat="server" Text="+ Watchlist" />
<asp:Button ID="btnPM" runat="server" Text="PM" />
<asp:Button ID="btnEdit" runat="server" Text="Edit" />
<asp:Button ID="btnReport" runat="server" Text="Report" />
</LoggedInTemplate>
</asp:LoginView>
ボタンIDにアクセスするには、aspx.cs(Codebehind)にコードを記述します
Button watchList = (Button)loginView1.FindControl("btnWatchlist");
Button pm = (Button)loginView1.FindControl("btnPM");
Button report = (Button)loginView1.FindControl("btnReport");
Button edit = (Button)loginView1.FindControl("btnEdit");
watchList、pm、report、editはnull値を取得しています。コードに間違いはありますか?
前もって感謝します..