如何使用应用程序缓存来解决程序运行速度

时间:2013-04-24 11:17:11
【文件属性】:
文件名称:如何使用应用程序缓存来解决程序运行速度
文件大小:2KB
文件格式:TXT
更新时间:2013-04-24 11:17:11
应用程序缓存 使用应用程序缓存来解决程序运行速度 protected void DisplayStarIinfo(DataTable dtStarInfo) { string country = dtStarInfo.Rows[0]["country"].ToString(); string username = dtStarInfo.Rows[0]["username"].ToString(); string englishName = dtStarInfo.Rows[0]["englishName"].ToString(); string birthday = dtStarInfo.Rows[0]["birthday"].ToString(); string constellation = dtStarInfo.Rows[0]["constellation"].ToString(); string bloodType = dtStarInfo.Rows[0]["bloodType"].ToString(); string weight = dtStarInfo.Rows[0]["weight"].ToString(); string height = dtStarInfo.Rows[0]["height"].ToString(); string degree = dtStarInfo.Rows[0]["degree"].ToString(); lblStar.Text = country + "明星一" + username; lblEnglishName.Text = "英文名:" + englishName; lblBirthday.Text = "生日:" + birthday; lblConstellationBlood.Text = "星座:" + constellation + "血型:" + bloodType; lblWeightHeight.Text = "体重: " + weight + "kg 身高:" + height + "cm"; lblDegree.Text = "学历:"+degree ; }......

网友评论