Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何使用 c# 代码创建标签并将其放入 href 标记中。这是因为,我需要使用单个 asp 标签控件作为标签和链接标签。
所以我希望它基于某些参数值以编程方式设置。这也是 ausercontro。注意:我无法更改逻辑,因为这是客户的要求
问候, Sivajih S.
使用asp:HyperLink控制!
asp:HyperLink
在你的aspx,
aspx
<asp:HyperLink ID="yourHyperLink" runat="server" > </asp:HyperLink>
在你的cs,
cs
if(....yourCondition...) { yourHyperLink.Text = "YourText"; yourHyperLink.NavigateUrl = "YourURL"; }