protected void Page_Load(object sender, EventArgs e) {
if (!IsPostBack) {
softtechno.Master ThisMaster = (softtechno.Master)this.Page.Master;
CommonCssPath = ThisMaster.CommonCssPath;
CommonJsPath = ThisMaster.CommonJsPath;
ModuleData ModuleDataObj = ModuleData.GetModuleData();
if (!string.IsNullOrEmpty(ModuleDataObj.ModuleTitle)) {
ModuleTitle = ModuleDataObj.ModuleTitle;
}
AddCssFiles(CommonCssPath + "sunrise.css");
PageNumber = 1;
TotalRecords = 0;
List<gaint.Contracts.ModuleActions> lstModuleActions = BLL_tech.GetOneModuleActions(Convert.ToInt64(ModuleDataObj.ModuleId), ModuleDataObj.PageId, ModuleDataObj.techId);
if (lstModuleActions != null) {
if (lstModuleActions.Count > 0) {
SetSettings(lstModuleActions[0].Settings);
if (lstModuleActions[0].SessionXML != null) {
loginIds = Utility.GetloginIds(lstModuleActions[0].loginXML);
}
}
}