linkinfo.cs
来自「一个ASP.NET下的中文内容管理和社区系统」· CS 代码 · 共 50 行
CS
50 行
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 + =
减小字号Ctrl + -
显示快捷键?