Eric's Blog

有需求才有进步

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2008年3月31日

摘要: using System; using System.Collections.Generic; using System.Text; using Microsoft.Crm.Sdk; using Microsoft.Crm.SdkTypeProxy; namespace IS { public class AccountPreCreate: IPlugin { ... 阅读全文
posted @ 2008-03-31 20:46 Eric.Chai 阅读(196) 评论(0) 推荐(0) 编辑

摘要: using System; using System.Data; using System.Configuration; using System.Web; using System.Net; using System.Net.Mail; using System.Collections; namespace GroupSendEmail { /**//// /// Mail 的... 阅读全文
posted @ 2008-03-31 15:56 Eric.Chai 阅读(525) 评论(0) 推荐(0) 编辑

摘要: SMTP的全称是“Simple Mail Transfer Protocol”,即简单邮件传输协议。它是一组用于从源地址到目的地址传输邮件的规范,通过它来控制邮件的中转方式。SMTP 协议属于 TCP/IP 协议簇,它帮助每台计算机在发送或中转信件时找到下一个目的地。SMTP 服务器就是遵循 SMTP 协议的发送邮件服务器。 在.Net中,System.Web.Mail类库里所提供的邮件发送的对... 阅读全文
posted @ 2008-03-31 15:40 Eric.Chai 阅读(828) 评论(0) 推荐(0) 编辑

摘要: In this example we are going to create a .NET assembly and then call that .NET assembly from the MSCRM workflow engine. This new ability to call .NET Assemblies can have important benefits for our cus... 阅读全文
posted @ 2008-03-31 13:39 Eric.Chai 阅读(241) 评论(0) 推荐(0) 编辑

摘要: 很多时候我们都要打开记录时OnLoad()动态的显示/隐藏某个界面元素,下面的Jscript 可以帮助我们达到目的。 /*只隐藏这个field*/ crmForm.all.field.style.display = 'none'; /*隐藏这个field 及其 lable*/ crmForm.all.field.style.display = 'none'; crmForm.all.f... 阅读全文
posted @ 2008-03-31 10:32 Eric.Chai 阅读(254) 评论(1) 推荐(0) 编辑