Combobox值自定义(不通过数据库)
Posted wusiraaron
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Combobox值自定义(不通过数据库)相关的知识,希望对你有一定的参考价值。
前台
<ext:ComboBox ID="cmbYear" runat="server"/>
.aspx.cs
int year = DateTime.Now.Year + 4;
while (year >= 2012)
{
cmbYear.Items.Add(new Coolite.Ext.Web.ListItem(year, year.ToString()));
year--;
}
以上是关于Combobox值自定义(不通过数据库)的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio基础项目-两个Activity的Intent传值自定义类数据(如数据库数据读取)。
Android Studio基础项目-两个Activity的Intent传值自定义类数据(如数据库数据读取)。