摘要: 打开应用程序的 Web.config 文件并添加以下元素: <authentication mode="Windows" /> <identity impersonate="true" userName="domain\username" password="password"/> <authent 阅读全文
posted @ 2016-11-04 16:25 -Ward- 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 在项目 App.xaml 文件下 => Application 节点=> 添加 DispatcherUnhandledException="Application_DispatcherUnhandledException" 属性 在App.xaml.cs下添加方法 void Application_ 阅读全文
posted @ 2016-10-20 21:22 -Ward- 阅读(2934) 评论(0) 推荐(0) 编辑
摘要: datagrid 属性 EnableRowVirtualization 设置为 false 解决...不要问我为什么. 害死我了 阅读全文
posted @ 2016-10-20 20:15 -Ward- 阅读(792) 评论(0) 推荐(1) 编辑
摘要: 一、预备知识—程序的内存分配 一个由C/C++编译的程序占用的内存分为以下几个部分 : 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其 操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回 收 阅读全文
posted @ 2016-10-17 22:50 -Ward- 阅读(1080) 评论(1) 推荐(0) 编辑
摘要: C:\Windows\System32\inetsrv\config\schema\ 下的IIS_schema.xml文件,但是考虑到安全等问题,而且这个文件默认是只读的,所以不建议直接修改这个配置文件,而应该在iis的管理器里修改: 打开某一个网站或者点击根节点,在最下方的“管理”部分,选择“配置 阅读全文
posted @ 2016-06-02 17:17 -Ward- 阅读(7178) 评论(0) 推荐(0) 编辑
摘要: 用如下方法获取UserId报空引用异常 1 2 3 4 5 6 7 8 9 public class BaseController : Controller { protected SiteContext db = new SiteContext(); protected Guid userId; 阅读全文
posted @ 2016-04-05 21:48 -Ward- 阅读(255) 评论(0) 推荐(0) 编辑
摘要: Array.prototype.indexOf = function (val) { for (var i = 0; i < this.length; i++) { if (this[i] == val) return i; } return -1; }; Array.prototype.remov 阅读全文
posted @ 2016-02-28 13:47 -Ward- 阅读(61452) 评论(2) 推荐(0) 编辑
摘要: 我的文档\Visual Studio 2015\Settings\CurrentSettings.vssettings Environment_Toolbox 节点 <Category name="Environment_Toolbox" Category="{481999F2-7479-4e03- 阅读全文
posted @ 2016-02-19 20:30 -Ward- 阅读(1634) 评论(0) 推荐(0) 编辑
摘要: public static class MapperExtensions { public static TResult MapTo<TResult>(this object self, TResult result) { if (self == null) throw new ArgumentNu 阅读全文
posted @ 2016-02-15 23:41 -Ward- 阅读(642) 评论(0) 推荐(0) 编辑
摘要: function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expir... 阅读全文
posted @ 2015-09-25 11:33 -Ward- 阅读(154) 评论(0) 推荐(0) 编辑