http://www.lesscss.netless.js下载LESS 1.5已经放出Beta 1版本,支持source map等新特性,欢迎尝鲜。详细变更请见更新日志。生产环境使用建议下载1.4.2稳定版本。1.5.0 Beta 11.4.2如果您需要在IE6、7、8中使用,请先在引入less.js前先引入es5-shim。https://github.com/kriskowal/es5-shim浏览器端使用LESSCSS也可以不经编译,直接在浏览器端使用。使用方法:下载LESSCSS的.js文件,例如lesscss-1.4.0.min.js。在页面中引入.less文件需要注意rel属性的值 Read More
XML-RPChttp://zh.wikipedia.org/wiki/XML-RPCXML-RPC是一个远程过程调用(远端程序呼叫)(remote procedure call,RPC)的分布式计算协议,通过XML将调用函数封装,并使用HTTP协议作为传送机制[1]。.net中一个比较流行的实现是: xml-rpc.nethttp://xml-rpc.net/faq/xmlrpcnetfaq-2-5-0.html1. Introduction1.1 What is XML-RPC?To quote the XML-RPC.com site:"It's a spec and Read More
http://ultidev.com/products/UWS-Cassini-Pro/ Read More
Environment.StackTraceorSystem.Diagnostics.StackTraceif you need a more convienient (i.e. not string) representation Read More
px和em都是长度单位,区别是,px的值是固定的,em的值是相对的,并且em会继承父级元素的字体大小。任意浏览器的默认字体高都是16px。所以未经调整的浏览器都符合: 1em=16px。那么12px=0.75em, 10px=0.625em。为了简化计算,在css中的body选择器中声明font-size=62.5%,这就使em值变为16px*62.5%=10px, 这样12px=1.2em, 10px=1em, 也就是说只需要将你的原来的px数值除以10,然后换上em作为单位就行了。引自:http://www.w3.org/Style/Examples/007/unitsBut in gen Read More
http://stackoverflow.com/questions/255591/who-knows-a-good-free-open-source-forum-in-c1. http://yetanotherforum.net/2.http://forum.codeplex.com/3.http://openforum.codeplex.com/ Read More
private void Button1_Click(object sender, System.EventArgs e){ System.Web.HttpBrowserCapabilities browser = Request.Browser; string s = "Browser Capabilities\n" + "Type = " + browser.Type + "\n" + "Name = " + browser.Browser + "\n" + "... Read More
http://www.tangiblesoftwaresolutions.com/(Java 2 C#)http://www.tangiblesoftwaresolutions.com/Product_Details/Java_to_CSharp_Converter.html上面是个商业软件,有免费版本http://sourceforge.net/projects/j2cstranslator/Java 2 CSharp Translator for Eclipse这是一个免费版本,Java 2 Csharp,它提供奖整个java项目转换为C#项目,简单项目可以,可惜试验时发现我的项目转换出错 Read More
http://stackoverflow.com/questions/928847/how-to-get-the-return-value-from-a-sql-server-stored-procedure-into-nhibernate exec Investor_GetDocumentById :userId, :docId public PhysicalDocument GetDocumentPath(int userId, int docId) { var query = Session.GetNamedQue... Read More
Instead of using your Macro, you could simply add in the Options-Dialog under Environment->Keyboard "ClassViewContextMenus.ClassViewProject.Debug.Startnewinstance" as a shortcut. This starts debuging on the current project.http://www.sharpdevel.com/2009/09/visual-studio-debug-start-new- Read More