Asp Gridview结合模糊查询(全文索引)的分页(8)
来源:未知 责任编辑:责任编辑 发表时间:2013-12-06 08:44 点击:次
q1.TempTypeID = int.Parse(ddlSStand.SelectedValue);
q1.TempTypeIDName = "SStandTypeID";
q1.FieldOne = "SStandFRContent"; //要匹配的字段
q1.FieldTwo = "SStandGRContent";
q1.Table = "SStand"; //表名
q1.TempIDName = "SStandID";
item = b.GetAllBySStand(q1);
gdvContent.DataSource = GridViewSet(item);
gdvContent.DataBind();
}
调用:
protected void LastPage_Command(object sender, CommandEventArgs e)
{
string Command = e.CommandArgument.ToString();
int Count = int.Parse(lblCount.Text);
if (Command == "FirstPage")
{
QuerryContent(5, 0);
CurrentCount.Text = "1";
if (int.Parse(CurrentCount.Text) == 1)
{
PrevePage.Enabled = false;
NextPage.Enabled = true;
LastPage.Enabled = true;
FirstPage.Enabled = false;
}
}
else if (Command == "PrevePage")
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>