点击的页面跟定义的变量

Posted menbe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点击的页面跟定义的变量相关的知识,希望对你有一定的参考价值。

 

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);
}

































































以上是关于点击的页面跟定义的变量的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序全局变量改变监听

php点击a标签触发事件

H5页面在QQ和微信上分享,怎么自定义设置图片和摘要?

如何设置PATH环境变量

如何设置PATH环境变量

自定义帖子类型不接受页面变量