2007年11月30日
摘要: In this article i'll try to explain how we can send emails using SMTP servers. First of all, what is SMTP what is MTA,MUA, protocol? Let's start talking about these subjects. ... 阅读全文
posted @ 2007-11-30 13:52 wskfire 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: By David Sandor Software developers have used ActiveX controls on their web pages to add advanced functionality to the web experience. With my migration from a Visual Basic 6 world to a Microsoft .NET... 阅读全文
posted @ 2007-11-30 13:37 wskfire 阅读(312) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Test { ... 阅读全文
posted @ 2007-11-30 13:31 wskfire 阅读(3164) 评论(0) 推荐(0) 编辑
摘要: MessageBox.Show(Convert.ToString(12345, 2)); //10进制转换为2进制 MessageBox.Show(Convert.ToString(12345, 8)); //10进制转换为8进制 MessageBox.Show(Convert.ToString(12345, 16)); //10进制转换为16进制 MessageBox.S... 阅读全文
posted @ 2007-11-30 13:27 wskfire 阅读(338) 评论(0) 推荐(0) 编辑
摘要: using System.IO; //读filename到byte[] private byte[] ReadFile(string fileName) { FileStream pFileStream = null; byte[] pReadByte = new byte[0]; ... 阅读全文
posted @ 2007-11-30 13:24 wskfire 阅读(25982) 评论(5) 推荐(0) 编辑
摘要: using System; using System.Net; using System.IO; using System.Text; using System.Net.Sockets; namespace FTP { /**//// /// 类描述:对FTP 操作类 /// 作者:何火生 /// public class FTPFactory ... 阅读全文
posted @ 2007-11-30 13:06 wskfire 阅读(5518) 评论(4) 推荐(0) 编辑