Exemple #1
0
		private void LoadList()
		{	
			Banks clsBank = new Banks();

			string SortField = "BankID";
			if (Request.QueryString["sortfield"]!=null)
			{	SortField = Common.Decrypt(Request.QueryString["sortfield"].ToString(), Session.SessionID);	}
			
			SortOption sortoption = SortOption.Ascending;
			if (Request.QueryString["sortoption"]!=null)
			{	sortoption = (SortOption) Enum.Parse(typeof(SortOption), Common.Decrypt(Request.QueryString["sortoption"], Session.SessionID), true);	}

            string SearchKey = "";
			if (Request.QueryString["Search"]!=null)
			{
				SearchKey = Common.Decrypt((string)Request.QueryString["search"],Session.SessionID);
			}
            PageData.DataSource = clsBank.ListAsDataTable(SearchKey, SortField, sortoption).DefaultView;
			clsBank.CommitAndDispose();

			int iPageSize = Convert.ToInt16(Session["PageSize"]) ;
			
			PageData.AllowPaging = true;
			PageData.PageSize = iPageSize;
			try
			{
				PageData.CurrentPageIndex = Convert.ToInt16(cboCurrentPage.SelectedItem.Value) - 1;				
				lstItem.DataSource = PageData;
				lstItem.DataBind();
			}
			catch
			{
				PageData.CurrentPageIndex = 1;
				lstItem.DataSource = PageData;
				lstItem.DataBind();
			}			
			
			cboCurrentPage.Items.Clear();
			for (int i=0; i < PageData.PageCount;i++)
			{
				int iValue = i + 1;
				cboCurrentPage.Items.Add(new ListItem(iValue.ToString(),iValue.ToString()));
				if (PageData.CurrentPageIndex == i)
				{	cboCurrentPage.Items[i].Selected = true;}
				else
				{	cboCurrentPage.Items[i].Selected = false;}
			}
			lblDataCount.Text = " of " + " " + PageData.PageCount;
		}
Exemple #2
0
		private void LoadOptions()
		{
			DataClass clsDataClass = new DataClass();

            Banks clsBank = new Banks();
            cboBank.DataTextField = "BankCode";
            cboBank.DataValueField = "BankID";
            cboBank.DataSource = clsBank.ListAsDataTable().DefaultView;
            cboBank.DataBind();
            clsBank.CommitAndDispose();
            cboBank.SelectedIndex = 0;
            cboBank_SelectedIndexChanged(null, null);

			Contacts clsContact = new Contacts();
			cboPayee.DataTextField = "ContactCode";
			cboPayee.DataValueField = "ContactID";
			cboPayee.DataSource = clsDataClass.DataReaderToDataTable(clsContact.Suppliers(null, 0, "ContactName", SortOption.Ascending)).DefaultView;
			cboPayee.DataBind();
			clsContact.CommitAndDispose();
			cboPayee.SelectedIndex = 0;

			txtChequeDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
			lblPaymentID.Text = "0";
			lblTotalDebitAmount.Text = "0.00";
			lblTotalCreditAmount.Text = "0.00";
			lblTotalAmount.Text = "0.00";

			txtPostingDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
			LoadAccount();
		}