医药CRM系统开发

自已做医药CRM系统有四年了,终于可以算个产品了,努力市场化,今年重种将医药营销的理念加入CRM

导航

随笔分类 -  AJAX经验积累

ASP.NET ajax技术积累
摘要:<script type="text/javascript"> $().ready(function() { $("#ddlType").change(function() { var SelectValue = $(this).find('option').filter(':selected').text(); $("#txtNewType").val(SelectValue); }... 阅读全文

posted @ 2009-12-12 17:37 hhq80 阅读(227) 评论(0) 推荐(0)

摘要:label$("span[id$=lbTotalAmount]").html(TotalAmount);$("span[id$=lbTotalAmount]").addClass("RedColor");TextBox$("input[id$=lbTotalAmount]").val("0"); 阅读全文

posted @ 2009-12-07 09:07 hhq80 阅读(437) 评论(0) 推荐(0)

摘要:--ModalPopup.csusing System;using System.Collections.Generic;using System.Diagnostics;using System.Runtime.CompilerServices;using System.Runtime.InteropServices;using System.Web.UI.WebControls;using A... 阅读全文

posted @ 2009-06-28 09:14 hhq80 阅读(388) 评论(0) 推荐(0)

摘要://需先增加这个类 using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControl... 阅读全文

posted @ 2009-02-25 20:41 hhq80 阅读(313) 评论(0) 推荐(0)

摘要:使用ListSearchExtender时,发现输入中文没有显示,分析了一上ListSearchBehavior.js,发现_isNormalChar函数上有一个e.charCode>6000,而汉字的编码范围是19968~40869,这个函数把如果是汉字,就返回false,即不提示显示,将代码改这如下即可正常显示汉字了: _isNormalChar : function(e) { ... 阅读全文

posted @ 2008-03-19 13:20 hhq80 阅读(1328) 评论(4) 推荐(0)

摘要:string js; js = ""; js += "function CallWebServices(){"; js += "AutoComplete.GetLoginUserCount(onOK);"; js += "}"; js += "function onOK(returnData){"; ... 阅读全文

posted @ 2008-03-16 09:30 hhq80 阅读(280) 评论(0) 推荐(0)