22 lines
647 B
C#
22 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace SuperMap.RealEstate.Finance.Compents.ProinstCompact
|
|
{
|
|
public partial class ProinstCompact : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
//读取公司名称
|
|
if (!string.IsNullOrEmpty(ConfigurationManager.AppSettings["bCompanyName"].ToString()))
|
|
{
|
|
CompanyName.Text = ConfigurationManager.AppSettings["bCompanyName"].ToString();
|
|
}
|
|
}
|
|
}
|
|
} |