温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:达达ASP.NET企业信息管理系统
当前文件路径:DaDaEnterprise/About.aspx.cs

1using System; 2
using System.Collections; 3
using System.Configuration; 4
using System.Data; 5
using System.Web; 6
using System.Web.Security; 7
using System.Web.UI; 8
using System.Web.UI.HtmlControls; 9
using System.Web.UI.WebControls; 10
using System.Web.UI.WebControls.WebParts; 11
//下载自51aspx.com 12
//源码下载及讨论地址:http://www.51aspx.com/CV/DaDaEnterprise 13
14
public partial class About : System.Web.UI.Page 15
{ 16
protected void Page_Load(object sender, EventArgs e) 17
{ 18
if (!IsPostBack) 19
{ 20
Title = ConfigurationManager.AppSettings["Web"] + " - 公司简介"; 21
string about = "select * from [about] where id = 1"; 22
DataTable Dt = DataAccess.GetDataTable(about); 23
24
Label1.Text = Dt.Rows[0]["about"].ToString(); 25
} 26
} 27
} 28





}
}