摘要:
今天遇到1个很是无语的问题。。。由于开发人员的版本更新导致用户在今天所开之单据的CreatDate都变成了yyyy-MM-dd格式,原本应该为yyyy-MM-dd hh:mm:ss:fff格式。于是,只能手动更新数据了 -_-!代码Code highlighting produced by Act... 阅读全文
摘要:
当某段JS在某些特殊情况下可能出错,而又不想其错误信息显示出来,我们可以通过重载window.onerror事件来达到目的!只要其返回true,脚本错误就不会再显示!Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1<scripttype="text/javascript">2functionfnOnError(msg){//自定义JS错误消息3alert(msg);4returntrue;5}6window. 阅读全文
摘要:
今天无意中发现当选择某个国家&城市联动时,遇到Ajax返回数据之后无法填充City的问题,查看HttpWatch,原来是:The length of the string exceeds the value set on the maxJsonLength property,也就是返回的Json数据的长度超过了默认的102400!因为DB的数据都是从原C/S系统导过来,冗余数据太多[CityName一样,CityCode不一样]导致某国家下面的城市数高达2000+,所以返回的时候才出现上面问题.只需在Web.config中修改maxJsonLength即可 阅读全文
摘要:
有的时候需要在输入数量的同时,实时计算出输入的总和,这就要借助于JavascriptCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><scriptlanguage="JavaScript">functioncount(){varone=document.thisform.one.value;vartwo=document.thisform.two.value;if((one!="")& 阅读全文