将图像按钮显示为 HTML

发布于 2024-11-26 12:58:49 字数 443 浏览 1 评论 0原文

是否可以将 asp:ImageButton 显示为 HTML?

下面是一段代码;

e.Row.Cells[0].Text = "<img src='Images/desc.gif' >";

由于其 postbackURL 属性(因为它支持导航),我需要将其替换为 asp:imagebutton

因此,我已将代码替换为 ;

e.Row.Cells[0].Text = "<asp:ImageButton id=imgtempasc runat=server ImageUrl=~/Images/tempasc.gif PostBackUrl=~/OT_Overview_Home.aspx >";

显示图像按钮而不是图像(如代码#1),但代码#2不起作用,

谢谢!

Is it possible to show asp:ImageButton as HTML?

Below is piece of code;

e.Row.Cells[0].Text = "<img src='Images/desc.gif' >";

which i need to replace with asp:imagebutton due to its postbackURL property (as it supports navigation)

Hence i have replaced my code as ;

e.Row.Cells[0].Text = "<asp:ImageButton id=imgtempasc runat=server ImageUrl=~/Images/tempasc.gif PostBackUrl=~/OT_Overview_Home.aspx >";

to show image button instead of image (as in code # 1) but Code # 2 doesn't work

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

臻嫒无言 2024-12-03 12:58:49

我真的不明白为什么如果你修改代码中的单元格就不能使用HyperLink?特别是如果您所做的只是将用户发送到另一个 URL。

如果您只是将用户从一个 URL 发送到另一个 URL,那么这不起作用

e.Row.Cells[0].Text = "<a href='http://yoururl'><img src='Images/desc.gif' ></a>";

如果您需要将表单数据从现有页面发布到另一页面,那么您将需要执行 Andreas Niederair 建议的操作并动态添加控件到网格视图

I really don't understand why you cannot use a HyperLink if you are modifying the Cell in your code? Especially if all you are doing is sending the user to another URL.

If you are simply sending the user from one URL to another, then will this not work

e.Row.Cells[0].Text = "<a href='http://yoururl'><img src='Images/desc.gif' ></a>";

If you require form data to be posted from your existing page to another page, then you will need to do what Andreas Niedermair has suggested and dynamically add the control to the GridView

七度光 2024-12-03 12:58:49

您可以使用 ASP:超链接!

超链接控件有一个 ImageUrl 属性,您可以使用该属性来设置链接的图像。

<asp:HyperLink runat="server"
 ID="myHyperLink" ImageUrl="~/foo.jpg" 
 NavigateUrl="~/YourUrl.aspx"></asp:HyperLink>

您可以使用超链接做任何您想做的事情。

You can use ASP:HyperLink!

Hyperlink Control has a ImageUrl property that you can use in order to set image for your link.

<asp:HyperLink runat="server"
 ID="myHyperLink" ImageUrl="~/foo.jpg" 
 NavigateUrl="~/YourUrl.aspx"></asp:HyperLink>

You can do whatever you want with hyperlink.

酷到爆炸 2024-12-03 12:58:49

我猜你想修改你的控制集合。因此,您需要正确执行此操作,如下所示:

var imageButton = new ImageButton
{
    ImageUrl = "~/Images/asc.gif",
    PostBackUrl = "~/Home.aspx"
};
e.Row.Cells[0].Controls.Add(imageButton);

i guess you want to modify your control-collection. therefore you will need to do it right, like this:

var imageButton = new ImageButton
{
    ImageUrl = "~/Images/asc.gif",
    PostBackUrl = "~/Home.aspx"
};
e.Row.Cells[0].Controls.Add(imageButton);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文