11 2016 档案
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using Word = Microsoft.Office.Interop.Word; using Microsoft.Office.Interop.Word; using System...
阅读全文
摘要:using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; namespace Common { public class WordOp
阅读全文
摘要:using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Text; namespace Common { /// /// AppSettings操作类,作者:Ward /// public class...
阅读全文
摘要:using System; using System.IO; using System.Linq; using System.Text; namespace Common { public class Log { public static void Writer(Exception ex, str
阅读全文
摘要:不知道为什么,网上对TIF的操作的资料少得可怜,包括CodeProject上都没有找到多少,在网上大多用GDAL,但这个东西,对只想做个合并图片的功能来说,实在是牛刀杀鸡,(9个DLL要带全,相当的恐怖)而且对完成的生成和读取TIF的描述也是相当的少,一般都是用来处理GIS。 版本为优化版,原版经常报内存不足 using System; using System.Collections.Gen...
阅读全文
摘要:public static bool DataSetToExcel(DataSet dataSet, string filePath, bool isShowExcle = true) { DataTable dataTable = dataSet.Tables[0]; int rowNumber
阅读全文
摘要:一般加密方式: 利用Aspnet_regiis: cd C:\Windows\Microsoft.NET\Framework\v4.0.30319 aspnet_regiis -pe "connectionStrings" -app "/WcfFileUploadService" -prov "Da
阅读全文
摘要:一 建立虚拟目录 http://localhost/EncryptWebConfig,并添加web.config,其中包含数据库连接字符串: <connectionStrings> <add name="Conn" connectionString="Data Source=liuwu;User I
阅读全文
摘要:打开应用程序的 Web.config 文件并添加以下元素: <authentication mode="Windows" /> <identity impersonate="true" userName="domain\username" password="password"/> <authent
阅读全文