<asp:GridView DataSource="Reports">
<ItemTemplate>
<asp:TextBox Text='<%# Bind("ReportId") %>'
<asp:Repeater DataSource="Something that is different than the GridView's DS">
<a href='<%# Bind("ReportId", "reports.aspx?report={0}") %>'/>
</asp:Repeater>
</ItemTemplate>
</asp:GridView>
我知道这是无法实现的,我正在寻找一种在嵌套中继器中使用来自父 gridview 的 ReportId 的方法,有没有办法使用服务器端代码 <%# %> 来做到这一点?