上一页 1 ··· 9 10 11 12 13 14 15 下一页

2010年12月7日

嵌套IFram时,CRM表单属性的使用

摘要: function Set_contract_prdetailIFrame() { var sArea = "new_contract_new_ordprdetail"; var sBaseUrl = "areas.aspx?"; var html = sBaseUrl; html += "oId=" + crmForm.ObjectId; html += "&oType=" + crmForm.ObjectTypeCode; html += "&security=" + crmFormSubmit.crmFormSubmitSecurity.value; html += "&roleOrd=1 阅读全文

posted @ 2010-12-07 11:47 HelloHongfu 阅读(212) 评论(0) 推荐(0) 编辑

2010年12月2日

1:N 关系 视图查找

摘要: var nnId ="contact_customer_accounts";//"new_account_contact"; // entity N:N relationship idvar lookupTypeCode = 2; // entity type codevar lookupViewId = "A2D479C5-53E3-4C69-ADDD-802327E67A0D"; // the... 阅读全文

posted @ 2010-12-02 09:15 HelloHongfu 阅读(161) 评论(0) 推荐(0) 编辑

1:N 关系

摘要: var nnId ="contact_customer_accounts";//"new_account_contact"; // entity N:N relationship idvar lookupTypeCode = 2; // entity type codevar lookupViewId = "A2D479C5-53E3-4C69-ADDD-802327E67A0D"; // the... 阅读全文

posted @ 2010-12-02 09:15 HelloHongfu 阅读(215) 评论(0) 推荐(0) 编辑

2010年11月11日

GridView和DataFormatString网站技术

摘要: GridView和DataFormatString网站技术 2009-07-20 23:11:21 阅读576 评论0 字号:大中小 订阅 . 如果DataFormatString无效,请添加属性 HtmlEncode = "false" --------------------------------------- 设定BoundField的DataFormatString,通常有以下几种 Da... 阅读全文

posted @ 2010-11-11 15:32 HelloHongfu 阅读(335) 评论(0) 推荐(0) 编辑

2010年10月31日

js showModalDialog参数传递

摘要: showModalDialog:模式窗口, 一种很特别的窗口,当它打开时,后面的父窗口的活动会停止,除非当前的模式子窗口关闭了, 才能操作父窗口.在做网页Ajax开发时,我们应该有时会用到它来实现表单的填写, 或做类似网上答题的窗口. 它的特点是,传参很方便也很强大,可直接调用父窗口的变量和方法.使用方法: vReturnValue = window.showModalDialog(sURL [... 阅读全文

posted @ 2010-10-31 19:41 HelloHongfu 阅读(7697) 评论(0) 推荐(0) 编辑

转载-------本人弟一篇技术文章,朋友们要关注哦

摘要: 下面是小弟做.net开发以后来的一点心得,发表出到和网友们交流下 ,如果是技术交流的话我有三个技术主页,朋友们可以到技术博客给我留言:http://www.cnblogs.com/hellohongfu/ 这是我的技术主页,在下也喜欢在QQ空间上玩,喜欢交朋友的也可以去我空间加我QQ好友http://user.qzone.qq.com/362335821有问题可以和我随时交流 hellohongfu@hotmai.com昨天安装啦vs2010 无论是界面还是编程风格,我感觉相对于2008,2005都是有极大的突破,安装的步骤和以上两个版本要求差不多,内存1G,如果用虚拟机体验的话内存要求1.5 阅读全文

posted @ 2010-10-31 11:18 HelloHongfu 阅读(177) 评论(0) 推荐(0) 编辑

2010年10月28日

设置IE主页和添加收藏夹的功能

摘要: 功能描述:添加见到到收藏夹,设置IE主页 阅读全文

posted @ 2010-10-28 17:46 HelloHongfu 阅读(460) 评论(0) 推荐(0) 编辑

2010年10月15日

后台取相同name值的问题

摘要: A Hypertext Markup Lanugage (HTML) form may include several input fields that share the same name. If you use the Request.Form or Request.QueryString collection to access a field name, a string is ret... 阅读全文

posted @ 2010-10-15 12:01 HelloHongfu 阅读(177) 评论(0) 推荐(0) 编辑

2010年9月28日

GridView帮定数据显示数据的技巧

摘要: <asp:GridView ID="grdList" runat="server" AutoGenerateColumns="False" Width="100%"DataKeyNames="SalesOrderId" OnRowDataBound="grdList_RowDataBound" AllowPaging="True" PageSize="50" OnPageIndexChang... 阅读全文

posted @ 2010-09-28 11:32 HelloHongfu 阅读(295) 评论(0) 推荐(0) 编辑

c# 保留2位小数 整数格式化的操作!

摘要: 引自:http://yjsghqqk.blog.163.com/blog/static/479823412010723711694/我来总结下: 1.只要求保留N位不四舍5入 float f = 0.55555f; int i =(int)(f * 100); f = (float)(i*1.0)/100; 2.保留N位,四舍五入 . decimal d= decimal.... 阅读全文

posted @ 2010-09-28 09:09 HelloHongfu 阅读(2067) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 下一页

导航