?? linkinfo.cs
字號:
namespace ASPNET.StarterKit.Communities {
using System;
using System.Data.SqlClient;
//*********************************************************************
//
// LinkInfo Class
//
// Represents all information about a particular link.
//
//*********************************************************************
public class LinkInfo : ContentInfo {
string _url;
//*********************************************************************
//
// LinkInfo Constructor
//
// Calls base ContentInfo constructor to initialize general
// content information and then initialize link specific
// information from a SqlDataReader.
//
//*********************************************************************
public LinkInfo(SqlDataReader dr) : base(dr) {
_url = (string)dr["Link_Url"];
}
//*********************************************************************
//
// Url Property
//
// Represents the URL for a link.
//
//*********************************************************************
public string Url {
get {return _url;}
set {_url = value;}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -