我有一个列表视图,我将一些问题绑定到它,以便用户可以回答它们。根据问题的类型,可以通过radiobuttonlist、dropdownlist、textbox等不同的输入控件来回答。
有点像这样:
<itemtemplate>
if (#eval("QuestionType") == 1)
{
<asp:RadioButtonList runat="Serer" />
}
elseif(#eval("QuestionType") == 2)
{
<asp:DropDownList runat="Serer" />
}
elseif(#eval("QuestionType") == 3)
{
<asp:CheckboxList runat="Serer" />
}
</itemtemplate>
以上是我实际拥有的简化示例伪代码。
我希望你明白我真正在寻找什么。