摘要:
普通的workflow,设置简单,开发也不复杂,SDK里面带有例子。最简单的CRM 4 workflow:[CrmWorkflowActivity("My Demo workflow")] public partial class MyDemo : Activity { public MyDemo() { } protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext) { try { //Debugger.Break(); IContextServ 阅读全文
摘要:
这是一个相当方便的工具,而且非常便于调试。Step 1:Download theUser Agent SwitcherAdd-on for FirefoxStep 2:Restart Firefoxfor the add-on change to take place.Step 3:To emulate a mobile web browser, you will need to change the user agent string that is sent out, we recommend finding a appropriate user agent string from thi 阅读全文
摘要:
官方的参数解释:http://ffmpeg.org/ffmpeg.htmlRefer:http://flvideoconverter.codeplex.com/http://www.codeproject.com/KB/audio-video/FFMPEG_Interface.aspxhttp://www.bizmodules.net/Products/UltraVideoGallery3/Overview/tabid/124/Default.aspxhttp://ramcrishna.blogspot.com/2008/09/playing-videos-like-youtube-and.h 阅读全文
摘要:
参考:Designing for the Mobile Web ArticleA Beginner's Guide to Mobile Web DevelopmentASP.NET Mobile Handset Detection, Redirection & Developmentasp.net mobile official site:http://www.asp.net/mobileSimulate Mobile Devices: http://www.asp.net/Mobile/device-simulators51Degrees.mobi:http://51degr 阅读全文
摘要:
其实很简单:ConditionExpression condition = new ConditionExpression(); condition.Operator = ConditionOperator.Equal; condition.AttributeName = "new_contactid"; condition.Values = new object[] { cid };cid就是Contact的id,在这里,是当前entity的一个Lookup field, 在查询的时候,我们无需转换成Guid,或者Lookup类型,再放到condition.Values里 阅读全文
摘要:
If you are working with Microsoft Dynamics CRM 4.0 and your planning to docode customizationsthen you probably should keep on reading. And why am I talking aboutcode customizationsand not justcustomizations? Well just because in CRM you can do a lot without a single line of code... and this time I w 阅读全文
摘要:
Creating a good website isn’t an easy task, but there’s a few tools that can definitely make your developer or designer life easier. In this article, I have compiled 15 extremely useful website that any web developer or web designer should have bookmarked.(创建一个好的网站并不是一件容易的事,不过这里有几个工具肯定可以让你的开发变得更容易,在 阅读全文
摘要:
For Beginners25 Resources to Get You Started with PHP from ScratchPHP for Beginners: Building Your First Simple CMSBeginners PHP Tutorial – Using CookiesPHP for Beginners: Simple Login, Logout, and Session HandlingTutorial: Writing your first PHP scriptVideo Tutorials To Start Learning PHP——————–Cod 阅读全文
摘要:
Adding a new web service to an application today so that I can delay loading some web user controls and ran into this 500 Error when calling the web service:Request format is unrecognized for URL unexpectedly ending in /GetHtmlFound this KB article with the fix:Add the following to web.config since 阅读全文
摘要:
最近一个项目用到这个了,昨晚花了近1个多小时才搞定,着实郁闷,而且还是最原始的递归。var arr = new Array();//定义顶级的数组,用来保存所有顶级的对象var arrp = new Array();//定义非顶级的数组,用来保存所有非顶级的对象for (var i = 0; i < folders.length; i++) { var id = folders[i].getValue('id'); var name = folders[i].getValue('name'); var parentId = folders[i].getVa 阅读全文