aspx
<%--========== debugボタン ==========--%>
<asp:Literal ID="LiteralDebugButton01" runat="server"></asp:Literal>
<%--========== /debugボタン ==========--%>
c#
#if DEBUG
LiteralDebugButton01.Text = "<button>(構成:debug)の時だけ表示されるボタン</button>";
#endif
これでDebugの時だけボタンが表示されます。(Releaseにすると消えます。)