上一页 1 ··· 11 12 13 14 15

2010年7月2日

JS下拉列表的操作--学习

摘要: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML> <HEAD> <TITLE> New Document </TITLE> <META NAME="Generator" CONTENT="EditPlus"> <META NAM... 阅读全文

posted @ 2010-07-02 17:07 HelloHongfu 阅读(304) 评论(0) 推荐(0) 编辑

2010年6月23日

Dynamics CRM 4.0 一个长的脚本

摘要: Dynamics CRM 4.0 脚本练习 阅读全文

posted @ 2010-06-23 18:30 HelloHongfu 阅读(576) 评论(1) 推荐(0) 编辑

2010年6月2日

crm中的iframe传递参数到aspx页

摘要: var newTarget = "http://www.cnblogs.com/../ktfw/NewOrOld.aspx";var nsrsbh =crmForm.all.new_nsrsbh.DataValue;newTarget = newTarget +"?nsrsbh="+nsrsbh;crmForm.all.IFRAME_nsrxx.src =newTarget ; 阅读全文

posted @ 2010-06-02 09:25 HelloHongfu 阅读(377) 评论(0) 推荐(0) 编辑

2010年5月30日

利用插件新建一条

摘要: // Set up the CRM Service.CrmAuthenticationToken token = new CrmAuthenticationToken();// You can use enums.cs from the SDK\Helpers folder to get the enumeration for Active Directory authentication.tok... 阅读全文

posted @ 2010-05-30 18:57 HelloHongfu 阅读(173) 评论(0) 推荐(0) 编辑

2010年5月19日

Microsoft Dynamics CRM 4.0 用javascript 获取当前用户

摘要: var xml = "" + "<?xml version=\"1.0\" encoding=\"utf-8\"?>" + "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ... 阅读全文

posted @ 2010-05-19 23:18 HelloHongfu 阅读(843) 评论(0) 推荐(1) 编辑

Microsoft Dynamics CRM 4.0 实体的联查

摘要: ConditionExpression cond = new ConditionExpression(); cond.AttributeName = "new_nsrsbh"; cond.Values = new object[] { "21010277460473X" }; FilterExpression filter = new FilterExpression(); filter.Cond... 阅读全文

posted @ 2010-05-19 21:19 HelloHongfu 阅读(388) 评论(0) 推荐(2) 编辑

20100518日做的订单存根

摘要: if(IsNull(crmForm.all.new_nsrsbh)==false){//获取纳税人识别号var nsrsbh = crmForm.all.new_nsrsbh.DataValue;var xml = "" + "<?xml version=\"1.0\" encoding=\"utf-8\"?>" + "<soap:Envelope xmlns:soap=\"ht... 阅读全文

posted @ 2010-05-19 17:19 HelloHongfu 阅读(186) 评论(0) 推荐(0) 编辑

2010年5月14日

Microsoft Dynamics CRM 4.0 对LOOKUP类型赋值

摘要: var lookupData = new Array();// Create an object to add to the array. var lookupItem= new Object();// Set the id, typename, and name properties to the object. lookupItem.typename = 'transactioncurrenc... 阅读全文

posted @ 2010-05-14 08:57 HelloHongfu 阅读(856) 评论(0) 推荐(1) 编辑

2010年5月13日

Micr0soft Dynamics CRM4.0 保存表单是的验证

摘要: if(IsNull(crmForm.all.new_nsrsbh)==false){ var nsrsbh =crmForm.all.new_nsrsbh.DataValue; if(IsNull(nsrsbh)==false){ return;}else{ alert("请输入纳税人识别号!"); event.returnValue = false; return false;}} 阅读全文

posted @ 2010-05-13 15:43 HelloHongfu 阅读(289) 评论(0) 推荐(0) 编辑

上一页 1 ··· 11 12 13 14 15

导航