示例#1
0
文件: clsHouse.cs 项目: imovila/Remax
        public string toUpdate()
        {
            StringBuilder list = new StringBuilder();

            list.Append("code = '" + Code + "',");
            list.Append("aria = " + Aria.ToString() + ",");
            list.Append("rooms = " + Rooms.ToString() + ",");
            list.Append("bathrooms = " + Bathrooms.ToString() + ",");
            list.Append("cityzone = " + ((int)CityZone).ToString() + ",");
            list.Append("address = '" + Address.ToString() + "',");
            list.Append("price = " + Price.ToString() + ",");
            list.Append("description = '" + Description.ToString() + "',");
            list.Append("type = " + ((int)Type).ToString() + ",");
            list.Append("pic = '" + Pic.ToString() + "',");
            list.Append("status = " + ((int)Status).ToString() + ",");
            list.Append("datein = '" + Datein.ToString() + "'");
            return(list.ToString());
        }
示例#2
0
文件: clsHouse.cs 项目: imovila/Remax
        public string toInsert()
        {
            StringBuilder list = new StringBuilder();

            list.Append("'" + Code + "',");
            list.Append(Aria.ToString() + ",");
            list.Append(Rooms.ToString() + ",");
            list.Append(Bathrooms.ToString() + ",");
            list.Append(((int)CityZone).ToString() + ",");
            list.Append("'" + Address.ToString() + "',");
            list.Append(Price.ToString() + ",");
            list.Append("'" + Description.ToString() + "',");
            list.Append(((int)Type).ToString() + ",");
            list.Append("'" + Pic.ToString() + "',");
            list.Append(((int)Status).ToString() + ",");
            list.Append("'" + Datein.ToString() + "'");
            return(list.ToString());
        }
示例#3
0
        /// <summary>
        /// handles the loading of the module setting for this
        /// control
        /// </summary>
        public override void LoadSettings()
        {
            try
            {
                if (!IsPostBack)
                {
                    GetCondoComplex();
                    GetTowns();
                    BindModules();
                    BindFavoriteModules();

                    //   FlexMLS_ListSettings settingsData = new FlexMLS_ListSettings(this.TabModuleId);


                    if (FavoritesModuleID != null)
                    {
                        drpModuleID.SelectedValue = FavoritesModuleID.ToString();
                    }

                    if (ShowCriteria != null)
                    {
                        if (ShowCriteria.Length > 0)
                        {
                            cbxShowCriteria.Checked = Convert.ToBoolean(ShowCriteria.ToString());
                        }
                    }

                    if (ListingOfficeMLSID != null)
                    {
                        ddlOfficeID.SelectedValue = ListingOfficeMLSID.ToString();
                    }

                    if (PropertyType != null)
                    {
                        ddlPropertyType.SelectedValue = PropertyType.ToString();
                    }

                    if (Town != null)
                    {
                        ddl_Town.SelectedValue = Town.ToString();
                    }
                    if (Village != null)
                    {
                        ddl_Village.SelectedValue = Village.ToString();
                    }
                    if (Bedrooms != null)
                    {
                        ddlBedRooms.SelectedValue = Bedrooms.ToString();
                    }
                    if (Bathrooms != null)
                    {
                        ddlBathRooms.SelectedValue = Bathrooms.ToString();
                    }
                    if (PriceLow != null)
                    {
                        ddlPriceLow.SelectedValue = PriceLow.ToString();
                    }
                    if (PriceHigh != null)
                    {
                        ddlPriceHigh.SelectedValue = PriceHigh.ToString();
                    }
                    if (WaterFront != null)
                    {
                        if (WaterFront.Length > 0)
                        {
                            cbxWaterFront.Checked = Convert.ToBoolean(WaterFront.ToString());
                        }
                    }
                    if (Waterview != null)
                    {
                        if (Waterview.Length > 0)
                        {
                            cbxWaterView.Checked = Convert.ToBoolean(Waterview.ToString());
                        }
                    }
                    if (Complex != null)
                    {
                        ddlComplex.SelectedValue = Complex.ToString();
                    }
                    if (DOM != null)
                    {
                        ddlDOM.SelectedValue = DOM.ToString();
                    }
                    if (FlexMLSPage != null)
                    {
                        ddlViewListing.SelectedValue = FlexMLSPage.ToString();
                    }

                    if (MaxThumbSize != null)
                    {
                        txtThumbSize.Text = MaxThumbSize.ToString();
                    }

                    if (ShowPaging != null)
                    {
                        if (ShowPaging.Length > 0)
                        {
                            cbxShowPaging.Checked = Convert.ToBoolean(ShowPaging);
                        }
                    }

                    if (NumberOfRecords != null)
                    {
                        txtNumberOfRecords.Text = NumberOfRecords.ToString();
                    }

                    if (MlsNumbers != null)
                    {
                        txtListingNumbers.Text = MlsNumbers.ToString();
                    }

                    if (YearBuilt != null)
                    {
                        txtYearBuilt.Text = YearBuilt.ToString();
                    }
                }
            }
            catch (Exception ex)
            {
                Exceptions.ProcessModuleLoadException(this, ex);
            }
        }