开发者

How to access the text within two tags from the codebehind

开发者 https://www.devze.com 2023-03-19 04:32 出处:网络
I have a Repeater which has HyperLinks inside of it. This gets binded at the OnInit() method. The HyperLinks look like:

I have a Repeater which has HyperLinks inside of it. This gets binded at the OnInit() method. The HyperLinks look like:

<asp:HyperLink runat="server" ID="hl" NavigateUrl='<%# GetNotificationDetailsUrl(Eval("Id")) %>' Target="_blank"> <asp:Image runat="server" ImageUrl='<%# "~/Images/Notifications/" + Eval("Type") + ".png" %>' /> <%# ResolveMessage(Container.DataItem) %> </asp:HyperLink>

So, there is text within two tags rather than in the Text attribute (notice the Image).

Is there any way to access this text at the Page_Load method (ie. once everything is binded)? I want to loop through the Repeat开发者_高级运维er and check if the text="foo" etc etc.


You need to check the text="foo" during data binding, not after databinding.

Repeater.ItemDataBound

0

精彩评论

暂无评论...
验证码 换一张
取 消