⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 housesaleprint.aspx.cs

📁 一个房屋中介系统的源码
💻 CS
字号:
//文件名:HouseSalePrint.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class HouseManage_HouseSalePrint : System.Web.UI.Page
{
    private HouseManage_HouseSaleForm MyPrintForm;
    protected void Page_Load(object sender, EventArgs e)
    {
        MyPrintForm = (HouseManage_HouseSaleForm)Context.Handler;
        this.Label3.Text = MyPrintForm.MyPrint房源编号;
        if (Session["MyCompanyPhone"] != null)
        {
            this.Label2.Text = "联系电话:"+Session["MyCompanyPhone"].ToString();
        }
        if (Session["MyCompanyName"] != null)
        {
            this.Label1.Text =Session["MyCompanyName"].ToString()+"出售房源";
        }
        this.Label4.Text = MyPrintForm.MyPrint建成年份;
        this.Label5.Text = MyPrintForm.MyPrint房屋产权;
        this.Label6.Text = MyPrintForm.MyPrint建筑面积;
        this.Label7.Text = MyPrintForm.MyPrint房型物管费;
        this.Label8.Text = MyPrintForm.MyPrint家电家私;
        this.Label9.Text = MyPrintForm.MyPrint配套设施; 
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -