随笔分类 - .net新技术
摘要:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<?xmlversion="1.0"encoding="utf-8"?><CommandTablexmlns="http://schemas.microsoft.com/Visual...
阅读全文
摘要:MSChart出现为ChartImg.axd 执行子请求时出错,刚开始怀疑web.config配置有问题,检查了一下HttpHandler一切正常 ,由于我的页面是Post过来的,所以试了一下给verb 加了POST,居然可以了。原来的配置:[代码]需要把verb="GET,HEAD"换成verb="POST,GET,HEAD"
阅读全文
摘要:利用Cache,让asp.net 简单实现定时执行任务代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--privatestaticCacheItemRemovedCallbackOnCacheRemove=null;protectedvoidAppl...
阅读全文
摘要:Paul Mason (via Chris Alcock)几篇关于保护源码和利用Cecil混淆演示的文章Protecting your precious code!, Protecting your precious code! - Part 2, Protecting your precious code – Obfuscation, Protecting your precious...
阅读全文
摘要:Reflactor是个好东西,不过反编译生成的代码多少还是有一些问题,到目前为止,还没有更好的解决调用属性、索引器的代码1.访问属性,Reflactor会生成aa.get_Xxx()这样的代码,实际上我们想要的是aa.Xxx.应该把.get_Xxx()替换成.XXX解决办法查找的内容:get_{[a-zA-Z0-9]+}\(\)替换为:\12.访问索引器,例如string a=b[i];这样的代码...
阅读全文
摘要:CROSS APPLY 和outer apply 的区别:[代码]
阅读全文
摘要:使用subsonic有一段时间了,不知道园子里有多少人在用或者是关注这个ORM,中文的资料还是不多,subsonic 3.0完全支持Linq,但是目前还是Beta阶段,还有很多bug,所以一直都是用subsonic 2.1 ,这里小小的总结一下,也可以说是备忘吧。一些Subsonic的一些链接:google项目主页:http://code.google.com/p/subsonicproject/...
阅读全文
摘要:官方网站:http://www.latticesoft.com/ 据说可以对extjs可见即可得的设计,没有试过。 同样的还是修改IL,还是延迟签名加载。呵呵 过程:先查找:Please contact us at 字符串的位置,找到LatticeFramework.WindowsUI.1i 类下面的private static void 0j() 方法。得知 if (!License...
阅读全文
摘要:在微软的ADO.NET team blog中,LINQ to SQL and Entity Framework的项目经理发表的一篇博客中写道: Since the release of LINQ to SQL and the Entity Framework, many questions have been raised about the future plans for th...
阅读全文
摘要:本文目的是实现在WebForm中模仿Winform中MessageBox.Show()的调用方式,配合javascript的window.cofirm,返回值回传,已经服务器端回调方法处理,封装成一个通用的自定义控件。
阅读全文
摘要:下面这段代码,返回当前计算机的网络连接状态 [DllImport("wininet.dll")] private static extern bool InternetGetConnectedState(ref uint connected, uint reserved); static uint uConnection = 0x20; /// /// Returns true if it ...
阅读全文
摘要:Measure String Size In Pixels (C #) Posted by Shahar Sometimes we need to know the width of a given string in pixels, do you know how to compute it? Before writing some long code, please notice th...
阅读全文
摘要:从.net Framework中copy出来的,修改了一下 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->public partial class Form1 : Form { public Form1() ...
阅读全文
摘要:原文出自:http://freeoh.spaces.live.com/blog/cns!57853FFFBF81D887!1185.entry?wa=wsignin1.0 引用 :读取Excel丢失内容的问题 通常读取Excel文件的方法有两种,一是通过ADO的OleDb,一是通过Com组件; 这里要说的是通过OleDb读取时,遇到的内容丢失问题。 症状:使用Microsoft.Jet.OLEDB...
阅读全文
摘要:Web http://www.webappers.com/ - 一个很好的web资源网站,搜集了大量的学习资料和漂亮的例子,如图标,button,window等组件 Multibox Supports Images, Flash, Video, MP3 and HTML - 一个图片,flash等展示的Multibox,非常漂亮 http://www.iconsh...
阅读全文
摘要:需求是这样的:我有一个DataSet,其中有一个DataTable,这个DataTable是根据调用存储过程不同的参数而生成的数据集,其列是可变的。现在需要为这样的数据集做一个简单的报表。 你不可能为一个可变列的DataTable设计一个固定的rdlc报表文件,因为column是动态的,可能是2列,可能是3列,可能是10列,列名也不同, 目前的办法也只能是根据DataSet,动态创...
阅读全文
摘要:.NET / Visual Studio Code Generation in Visual Studio Using T4 Templates - Screencast and Sample (David Hayden) An Amazing Introduction to NDepend (Patrick Smacchia) Jump between braces in Visual S...
阅读全文
摘要:When I need to debug a windows service I usually make a call to Thread.Sleep and then attach the debugger manually. 1: protected override void OnStart(string[] args) 2: { 3: 4: ...
阅读全文