如何从数据网格/中继器中的表单控件中提取 ID (vb)
我有以下中继器,
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在中继器中有一个链接按钮,这就是您无法使用链接按钮功能的原因。您必须在weatherFeed_ItemDataBound 事件中找到链接按钮,然后附加您的
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 .....
我想通了。在你的函数中只需执行 Sender.ID
I figured it out. In your function just do Sender.ID