我的网页中有一个中继器,如下所示
<asp:Repeater runat="server" ID="AccountScrollRepeater" onitemdatabound="AccountRepeater_ItemDataBound">
<ItemTemplate>
<tr class="primary-BL2" style="text-align:left">
<td style="width:70px"><asp:Label runat="server" ID="AccountNoLabel" Text='<%# Eval("AccountNo") %>'></asp:Label></td>
<td style="width:40px"><asp:HyperLink runat="server" ID="CustomerHyperLink" NavigateUrl="" Text='<%# Eval("CustId") %>' Enabled="false"></asp:HyperLink></td>
...
</tr>
</ItemTemplate>
我想将 CustomerHyperLink 的 NavigateUrl 设置为以下表达式,
string.Format(AppSetting.Instance.GetSearchDetailUrl(SearchTypeEnum.Customer), '<%# Eval("CustNo") %>');
我的问题不是在后面的代码中设置 NavigateUrl,而是如何将它放在 aspx 页面中?