我正在尝试将命令名分配给 html 按钮,但显然它不能很好地工作。这就是我想要实现的目标:
<button type="submit" class="btn btn-info right" CommandName="Login" runat="server" id="loginBtn"><span class="icon16 icomoon-icon-enter white"></span> Login</button>
<asp:Button ID="btnLogin" CommandName="Login" runat="server" CssClass="btn btn-info right" Text="Login" />
由于某种原因,样式不适用于 asp 按钮,但它适用于 html 按钮。现在,如果可能的话,我想以某种方式将 commandname 属性分配给 html 按钮。大家觉得可行吗?每条评论都值得赞赏。提前致谢, Laziale