using System; using CoreSavingLibrary; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; namespace Saving.Criteria.dlg { public partial class w_dlg_search_memgroup : System.Web.UI.Page { WebState state; DwTrans SQLCA; int currentLoan = 0; string loans; protected void Page_Load(object sender, EventArgs e) { state = new WebState(Session, Request); SQLCA = new DwTrans(); SQLCA.Connect(); dw_memgroup.SetTransaction(SQLCA); DwUtil.RetrieveDataWindow(dw_memgroup, "sl_member_search.pbl", null, null); if (!IsPostBack) { } } protected void Page_LoadComplete(object sender, EventArgs e) { SQLCA.Disconnect(); } } }