C#
sfchina
公司是做对日外包的
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
.net中MD5加密和解密
using System.Security.Cryptography; using System.IO; using System.Text; ///MD5加密 public string MD5Encrypt(string pToEncrypt, string sKey) { DESCryptoServiceProvider des = new DESCry原创 2007-04-22 21:34:00 · 1692 阅读 · 0 评论 -
.net显示帮助
有两个方法1、使用HelpProvider类2、使用Help.ShowHelp() 或者 Help.ShowHelpIndex()ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.2052/cpref/html/frlrfSystemWindowsFormsHelpClassShowHelpTopic.htm原创 2007-04-22 21:40:00 · 771 阅读 · 0 评论 -
用XSL解析XML
strXmlPath=GetUnitFilePath(courseId,subCourseId,unitId); strXSLTFile=GetCrsQuestion(courseSettingInfo,courseId,subCourseId).File; System.Xml.XPath.XPathDocument xp原创 2007-04-22 22:01:00 · 731 阅读 · 0 评论 -
.NET download file
if(File.Exists(finalFilePath.ToString())) { try { HttpContext hc = HttpContext.Current; hc.Response.Clear(); hc.Response.Charset = ConfigSettings.Create().GetEncoding().ToString(); hc.Respons原创 2007-04-22 22:03:00 · 632 阅读 · 0 评论
分享