摘要:
//1000=1秒 int timeclock = 1000 * 60*5; System.Timers.Timer t = new System.Timers.Timer(timeclock);//实例化Timer类,设置间隔时间为五分钟; t.Elapsed += new System.Time... 阅读全文
摘要:
http://www.jb51.net/article/66689.htm 阅读全文
摘要:
string XmlFile = ReturnXml(orgcode, u8no, ex.ToString(), resulttype, "0"); byte[] bytes = Encoding.UTF8.GetBytes(XmlFile); response.BinaryWrite(bytes); /// ... 阅读全文
摘要:
/// /// 创建xml文件 /// /// xml /// public string CreateXml(string xmlDoc) { string filePathName = string.Empty; try ... 阅读全文
摘要:
/// /// 获取数据库名称 /// /// 帐套号 /// public static string GetDBName(string Account) { StringBuilder strSql = new StringBuilder(); ... 阅读全文
摘要:
StreamWriter sw = new StreamWriter(xmlFileName, false, new UTF8Encoding(false)); xmldoc.Save(sw); sw.Close(); 阅读全文
摘要:
public int Asc(string character) { if (character.Length == 1) { System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding(); ... 阅读全文
摘要:
/// /// 上传文件:要设置共享文件夹是否有创建的权限,否则无法上传文件 /// /// 文件路径以及文件名 /// 网络文件夹地址 /// 用户名 /// 密码 public string UpLoadFile(string fileNamePath, string ur... 阅读全文
摘要:
/// /// 获取指定节点的值 /// /// 文件路径 /// 节点名称 /// 指定节点所在的节点目录 /// public static string GetNodeValue(string strFileName, string nodeN... 阅读全文
摘要:
/// /// Http上传Xml文件 /// /// 访问url /// 文件路径(本地的绝对路径) /// public string HttpUploadFile(string url, string path) { string result ... 阅读全文