摘要:
本地运行都正常,就是发布到服务器上不行,查找了一些文章,都没解决我的问题,后来发现是路径不对和文件缺失。 原来的配置文件中是这样的: <add name="TRidentityEntities" connectionString="metadata=res://*/TRidentityModel.c 阅读全文
摘要:
解决办法只有一个就是在配置文件中强制指定编码格式:<add name="TSDBEntities" connectionString="metadata=res://*/TSModel.csdl|res://*/TSModel.ssdl|res://*/TSModel.msl;provider=My 阅读全文
摘要:
参考:https://www.cnblogs.com/guogangj/archive/2013/02/27/2934733.html 模板:JDFlowDocument.xaml <FlowDocument PageWidth="450" PagePadding="0 0 0 0" xmlns=" 阅读全文
摘要:
Nuget安装ZXing.Net,帮助类: using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using ZXing; using ZXing.Com 阅读全文
摘要:
安装MYSQL后更改了ROOT的密码后用 net start mysql 启动时报错1067。使用以下命令:1.进入mysql安装目录的bin目录下:cd C:\Program Files\MySQL\MySQL Server 5.6\bin 2.执行命令:mysqladmin -u root -p 阅读全文
摘要:
https://jingyan.baidu.com/article/948f5924090c7ad80ff5f9c5.html 阅读全文
摘要:
微软Win10自动更细补丁后windows mobile设备中心就无法启动了 需要重新启动相关的服务并授予 本机登录用户 权限 1.点击屏幕左下角“开始”图标,点击“运行”,在弹出的输入框中输入“services.msc”按下回车键。 2.在弹出的界面中,找到“基于Windows Mobile 20 阅读全文
摘要:
code function toThousands(num) { if (isNaN(num) || num == undefined || num == null || num == "") { return ""; } num = num.toString(); var numArr = num 阅读全文
摘要:
代码,需要加入的控件:PrintDocument、PageSetupDialog、PrintDialog、PrintPreviewDialog、BackgroundWorker,控件的Document属性要指定为PrintDocument控件的id。导入Excel用的是12.0的驱动,需要下载:ht 阅读全文
摘要:
带进度 http://t.zoukankan.com/h82258652-p-10950580.html namespace AppUtils { public struct HttpDownloadProgress { public long BytesReceived { get; set; } 阅读全文