c#.net常用函数和方法集
摘要:1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 int 日=curre...
阅读全文
.NET下的FTP上传,下载文件(支持中文名)
摘要:摘自:http://blog.csdn.net/veryhappy/archive/2006/01/16/581072.aspx基本原理就是先建立Socket连接,然后发请求命令和取回应答码。编码方式采用EncodingASCII=Encoding.Default;来支持中文文件名。usingSystem;usingSystem.Net;usingSystem.Net.Sockets;usingS...
阅读全文
无需.net和专用组件实现用asp访问webservice
摘要:转自:http://searchwebservices.techtarget.com.cn/tips/347/2136347_1.shtml 可能,大多数的人认为我们需要运行asp.net或使用soap toolkit以访问webservice。但是这不是必需的,使用微软的xml parser我们同样可以利用传统的asp页面来访问webservice,下面我就展示给大家看一看! 我将使用三个文件来...
阅读全文