asp.net(c#)利用構(gòu)造器鏈的代碼
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 22:45:03
asp.net(c#)利用構(gòu)造器鏈的代碼
asp.net(c#)利用構(gòu)造器鏈的代碼: 代碼如下: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
導(dǎo)讀asp.net(c#)利用構(gòu)造器鏈的代碼: 代碼如下: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

代碼如下:
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 Default4 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
WebInfo info = new WebInfo();
string infoOut = string.Format("站點(diǎn):{0}<br>域名:{1}",info.WebName,info.WebUrl);
Response.Write(infoOut);
}
public class WebInfo
{
public WebInfo():this("搜索吧","http://www.sosuo8.com/")
{
}
public WebInfo(string webUrl):this("搜索吧",webUrl)
{
}
public WebInfo(string webName, string webUrl)
{
_webName = webName;
_webUrl = webUrl;
}
private string _webName;
private string _webUrl;
public string WebName
{
get
{
return _webName;
}
set
{
_webName = value;
}
}
public string WebUrl
{
get
{
return _webUrl;
}
set
{
_webUrl = value;
}
}
}
}
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
asp.net(c#)利用構(gòu)造器鏈的代碼
asp.net(c#)利用構(gòu)造器鏈的代碼: 代碼如下: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