摘要:
数据实体类:[Table(Name = "customers")] public class Customer { private string _CustomerID; [Column(IsPrimaryKey=true,Storage="_CustomerID")] public string CustomerID { get { return this._CustomerID;www.wpf123.com } set { this._CustomerID = value; } } private string _City; [Column(Stor 阅读全文
阅读排行榜
TabControl添加关闭按钮
2010-02-24 20:58 by 观海看云, 1912 阅读, 收藏,
摘要:
const int CLOSE_SIZE = 4;Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//清空控件this.MainTabControl.TabPages.Clear();//绘制的方式OwnerDrawFixed表示由窗体绘制大小也一样t... 阅读全文
利用XMLHTTP下载文件
2013-06-07 14:44 by 观海看云, 1840 阅读, 收藏,
摘要:
using MSXML2; 下面就是主要的代码:private void Page_Load(object sender, System.EventArgs e){ string Url = "http://dotnet.aspx.cc/Images/logoSite.gif"; string StringFileName = Url.Substring(Url.LastIndexOf("/") + 1); string StringFilePath = Request.PhysicalApplicationPath; if(!StringFilePat 阅读全文
c#_实现FTP方法(一) --- FtpWebRequest
2010-11-13 21:39 by 观海看云, 1816 阅读, 收藏,
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--classFTP_Class{stringftpServerIP;stringftpUserID;stringftpPassword;FtpWebRequestreqFTP;publicvoidCon... 阅读全文
浙公网安备 33010602011771号