我正在使用Asp.net網格視圖綁定字段,在綁定字段中我使用錨標記在新選項卡中打開值。我的錨標記可以正常使用,因爲它是獲取從數據庫值,但問題是,我想說明從數據庫中值的錨標記一些東西像我的分貝值 這裏是我的代碼Asp.net網格視圖BoundField
<asp:BoundField DataField="uniId" ControlStyle-CssClass="bg-darkGreen" HeaderText="ID" ReadOnly="True" SortExpression="uniId" HtmlEncode="false" DataFormatString="<a target='_blank' href='Details.aspx?uniId={0}'>uniId</a>" >
</asp:BoundField>
是表示uniId在所有行中而不是它們的值。
我也試過<%= uniId%>但問題依然存在。
可能重複的[如何在ASP.net C#中的數據網格onClick中選擇單元格](http://stackoverflow.com/questions/22087207/how -to-SEL ect-a-cell-in-datagrid-onclick-in-asp-net-c-sharp)也可以在'Templates'上看到。 – MethodMan
嘗試 '<%#Eval(「uniId」)%>' – Rohit