如何在asp.net linkButton中添加图像按钮?
如何用 C# 动态地做到这一点?
<asp:LinkButton ID="LinkButton1" runat="Server" >Text
<asp:ImageButton ID="ImageButton1" runat="Server" ImageUrl="~/images/Detail.png"></asp:ImageButton>
</asp:LinkButton>
例如:
LinkButton lnk = new LinkButton();
lnk.Add(new ImageButton());
How to do that dynamically C# ?
<asp:LinkButton ID="LinkButton1" runat="Server" >Text
<asp:ImageButton ID="ImageButton1" runat="Server" ImageUrl="~/images/Detail.png"></asp:ImageButton>
</asp:LinkButton>
Forexample:
LinkButton lnk = new LinkButton();
lnk.Add(new ImageButton());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试以下操作
Try the following
如果它是 LinkButton,那么您不需要向其中添加 ImageButton,
如果这样做会更好
if its a LinkButton, Then you dont need to add an ImageButton into it
instead it'd be much better if you do it this way
您可以将
ImageButton
添加到Controls
集合中:You can add an
ImageButton
to theControls
collection:尝试:
Try: