62,173
社区成员
发帖
与我相关
我的任务
分享
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//页面B返回的页面A的gvpageindex值
string pgind = Request.QueryString["RtnPageInd"];
if (pgind != null && !string.IsNullOrEmpty(pgind))
{
GV_List.PageIndex = Convert.ToInt32(pgind);
}
GVBind(SearchStr, TableString.F_MEL_ID + " desc ");
}
}
protected void ImgBtn_edit_Click(object sender, ImageClickEventArgs e)
{
//编辑时,将页面A的pageindex值传给页面B
Response.Redirect("MExportLibraryEditor.aspx?pageind="+Convert.ToString(GV_List.PageIndex)+"");
}