如何从数据网格/中继器中的表单控件中提取 ID (vb)

发布于 2024-12-04 02:58:30 字数 429 浏览 0 评论 0原文

我有以下中继器,

<asp:Repeater id="weatherFeed" Runat="server"><ItemTemplate>
    <asp:LinkButton runat="server" id="PickInfo" onClick="Selection_PickInfo">
     <img src="images/mapPin.png" title="<%#Container.DataItem("city")%>" />
    </asp:LinkButton>
</ItemTemplate></asp:Repeater>

我想使用创建的链接按钮调用我的函数“Selection_PickInfo”,但我遇到了无法实际从这些链接中提取信息的问题。

I have the following repeater

<asp:Repeater id="weatherFeed" Runat="server"><ItemTemplate>
    <asp:LinkButton runat="server" id="PickInfo" onClick="Selection_PickInfo">
     <img src="images/mapPin.png" title="<%#Container.DataItem("city")%>" />
    </asp:LinkButton>
</ItemTemplate></asp:Repeater>

I'd like to call my function "Selection_PickInfo" using the Link buttons created, but I'm having the issue of not being able to actually pull information from these links.

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

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

发布评论

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

评论(2

路还长,别太狂 2024-12-11 02:58:30

您在中继器中有一个链接按钮,这就是您无法使用链接按钮功能的原因。您必须在weatherFeed_ItemDataBound 事件中找到链接按钮,然后附加您的
Selection_PickInfo 然后它会正常工作。试试这个......

LinkButton pickInfo = (LinkButton)weatherFeed.FindControl("PickInfo");
            pickInfo.Attributes["onclick"] = "Selection_PickInfo();";

you have a link button in the repeater that's why you are not able to use the link button functionality.you have to find the link button in the weatherFeed_ItemDataBound event then attach your
Selection_PickInfo then it will work fine.Try this .....

LinkButton pickInfo = (LinkButton)weatherFeed.FindControl("PickInfo");
            pickInfo.Attributes["onclick"] = "Selection_PickInfo();";
娇柔作态 2024-12-11 02:58:30

我想通了。在你的函数中只需执行 Sender.ID

I figured it out. In your function just do Sender.ID

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文