.NET ASPX で 構成が Debug の時だけボタンを表示させる

● .NET ASPX で 構成が Debug の時だけボタンを表示させる

aspx

<%--========== debugボタン ==========--%>
<asp:Literal ID="LiteralDebugButton01" runat="server"></asp:Literal>
<%--========== /debugボタン ==========--%>

c#

#if DEBUG
LiteralDebugButton01.Text = "<button>(構成:debug)の時だけ表示されるボタン</button>";
#endif

これでDebugの時だけボタンが表示されます。(Releaseにすると消えます。)

No.1582
09/03 18:49

edit