CommonData data = new CommonData(); //我自己写的一个类,用于取DataTable的
DataTable dt = null;
dt = (DataTable)Context.Cache["JobParentCategory"]; //Context.Cache -> System.Web
if (dt == null)
{
dt = data.JobParentCategory();
Context.Cache.Insert("JobParentCategory", dt); //把数据存入Cache中
}
foreach (DataRow dr in dt.Rows) //如果dt不为空,就直接遍历Cache中的DataTable
{
ddlJobCategory.Items.Add(new ListItem(dr[2].ToString(), dr[1].ToString()));
}
DataTable dt = null;
dt = (DataTable)Context.Cache["JobParentCategory"]; //Context.Cache -> System.Web
if (dt == null)
{
dt = data.JobParentCategory();
Context.Cache.Insert("JobParentCategory", dt); //把数据存入Cache中
}
foreach (DataRow dr in dt.Rows) //如果dt不为空,就直接遍历Cache中的DataTable
{
ddlJobCategory.Items.Add(new ListItem(dr[2].ToString(), dr[1].ToString()));
}