0

这是我的标记:

<asp:GroupRadioButton ID="GroupRadioButtonYes" runat="server" Text='<%$Resources:RATResource,YesHeader%>'
Value='<%#Eval("MLTFQuestionId","{0}_1") %>' GroupName='<%#Eval("MLTFQuestionId")%>' 
Visible='<%# (int)Eval("MLTFAnswerTypeId") == 1 %>'
class="GroupSelection" />

我希望从 appsettings 驱动数字“1”。

这显然行不通

Visible='<%# (int)Eval("MLTFAnswerTypeId") == $ AppSettings: SingleSelect %>

是否可以在同一个表达式中使用 AppSettings 和 Eval ?

4

1 回答 1

1

你为什么不试试这样

<asp:Label ID="Label1" runat="server" 
     Text='<%# getDAta() %>'></asp:Label>

代码隐藏

public string getDAta(0
{
  return "MLTFAnswerTypeId" + appsettingdatayouwant;
}
于 2012-11-20T07:13:32.123 回答