Files
SSC/CMS_SC/AnagMatricole.aspx.cs
T
2015-05-19 17:40:52 +02:00

28 lines
764 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace CMS_SC
{
public partial class AnagMatricole : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
((Bootstrap)this.Master).showSearch = true;
mod_righePag.numRowPag = 20;
mod_anagMatricole.pageSize = mod_righePag.numRowPag;
}
mod_righePag.eh_newNum += mod_righePag_eh_newNum;
}
void mod_righePag_eh_newNum(object sender, EventArgs e)
{
mod_anagMatricole.pageSize = mod_righePag.numRowPag;
}
}
}