我想要一个人点击购买,这会触发代码隐藏中的代码.
这与a工作正常Button,但我更喜欢文本超链接?
<asp:Button runat="server" ID="purchase" Text="Purchase" />
Run Code Online (Sandbox Code Playgroud)
Jim*_*uts 11
LinkButton怎么样?LinkButton基本上为您提供了一个asp:Button作为超链接.
<asp:LinkButton runat="server" ID="purchase" Text="Purchase" />
Run Code Online (Sandbox Code Playgroud)
有关更多信息,请参阅MSDN.