随笔分类 -  notes

使用AutoHotKey提升工作效率
摘要:软件地址: https://www.autohotkey.com/ 中文帮助地址: https://wyagd001.github.io/zh cn/docs/AutoHotkey.htm 技巧一 自动输入多个输入框 可以使用{TAB}选项。 打开网站,然后按TAB键,直到到达输入字段并计算您击中它 阅读全文

posted @ 2020-04-24 09:22 margiex 阅读(370) 评论(0) 推荐(0)

dotfuscator notes
摘要:1. 使用了web service的部分不应该rename, 包括WS proxy class and properties/settings.cs部分. 2. 使用了反射的部分也不能rename,否则找不到对应的类/方法. 3. 自定义的enum类型最好不要混淆,如果是某些地方要引用ENUM的类型名称输出为string,则显示混淆后的名称了. 阅读全文

posted @ 2008-03-09 18:53 margiex 阅读(278) 评论(0) 推荐(0)

asp.net notes
摘要:cache's expire problem string sendTimeKey = "abc_sendtime"; //DateTime dtLast = (DateTime)cache[sendTimeKey]; if (Cache[sendTimeKey] == null) { ... 阅读全文

posted @ 2008-01-19 21:43 margiex 阅读(302) 评论(0) 推荐(0)

visual studio notes
摘要:1. .net framework source已经可以在vs2008中使用 ref: http://weblogs.asp.net/scottgu/archive/2008/01/16/net-framework-library-source-code-now-available.aspx http://blogs.msdn.com/sburke/archive/2008/01/16/con... 阅读全文

posted @ 2008-01-17 09:36 margiex 阅读(530) 评论(0) 推荐(0)

web service notes
摘要:性能提高 压缩传输数据, 减少多次调用, XML解析器的优化和选择, 简化标签, 缓存机制 ref: http://www.ibm.com/developerworks/cn/webservices/0710_wangyun/index.html?S_TACT=105AGX52&S_CMP=NL&ca=dnl-cn-11212007 in class librar... 阅读全文

posted @ 2007-11-22 08:32 margiex 阅读(280) 评论(0) 推荐(0)

db notes
摘要:mssql if very slow in linked server, maybe the linked server's "sql server browser" not startup, just start it and try again. On the Start menu, point to All Programs, Micr... 阅读全文

posted @ 2007-11-08 08:54 margiex 阅读(533) 评论(1) 推荐(1)

C# & vs note
摘要:C#中正则表达表判断是否为汉字: [\u4e00-\u9fa5] http://topic.csdn.net/t/20040911/09/3362107.html Cannot execute a program. The command being executed was "C:\Windows\Microsoft.NET\Framework\v2... 阅读全文

posted @ 2007-11-06 17:37 margiex 阅读(991) 评论(0) 推荐(0)

windows note
摘要:如果希望pslist or pskill 可以查看远程机器,需要下列两个条件: 1. 远程机器上的remote registry accessed服务是启动状态. 2. 你已经连接到远程机器的IPC$上. VPC 2007可以使用多个监视器来工作,这样另一个显示器上可以看到VPC运行的OS了. http://weblogs.asp.net/lhunt/ar... 阅读全文

posted @ 2007-09-06 19:43 margiex 阅读(506) 评论(0) 推荐(0)

asp.net notes
摘要:Password TextBox and PostBack // Refill Password field this.txtPassword.Attributes.Add("value", this.txtPassword.Text); ajax cascadingdown, 只能在放有cascadingdown控件的页面上设置static web method... 阅读全文

posted @ 2007-09-04 22:46 margiex 阅读(384) 评论(0) 推荐(0)