码迷,mamicode.com
首页 > 其他好文 > 详细

点击的页面跟定义的变量

时间:2018-08-23 10:11:17      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:col   res   summary   userinfo   info   list   int   use   首页   

 

static int index = 1;
static int size = 3;
static int count = 0;//总条数
static int page = 0;//总页数
string Where = "";//条件
static string orderCol = " a.ID asc";//排序

/// <summary>
/// 首页
/// </summary>
/// <returns></returns>
public ActionResult First()
{
XiaoQu();
DongHao();
HuXing();
ZhuangTai();
List<UserInfoModel> list = ShowPage();
return View("Index", list);
}
/// <summary>
/// 上一页
/// </summary>
/// <returns></returns>
public ActionResult ShangYiYe()
{
XiaoQu();
DongHao();
HuXing();
ZhuangTai();
if (index > 1)
{
index--;
}
List<UserInfoModel> list = ShowPage();
return View("Index", list);
}
/// <summary>
///// 下一页
/// </summary>
/// <returns></returns>
public ActionResult Next()
{
XiaoQu();
DongHao();
HuXing();
ZhuangTai();
if (index < page) //当前页小于总页数
{
index++;
}
List<UserInfoModel> list = ShowPage();
return View("Index", list);
}
/// <summary>
/// 尾页
/// </summary>
/// <returns></returns>
public ActionResult WeiYe()
{
XiaoQu();
DongHao();
HuXing();
ZhuangTai();
List<UserInfoModel> list = ShowPage();
return View("Index", list);
}

点击的页面跟定义的变量

标签:col   res   summary   userinfo   info   list   int   use   首页   

原文地址:https://www.cnblogs.com/MenBe/p/9521728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!