08 2011 档案
摘要:前台{ xtype: "combo", triggerAction: "all", mode: "remote", minChars: 1, //多少个字符促发查询 queryParam: "search",//这个必须的,因为后台要用到这个参数 forceSelection: true, editable: true, hiddenName: "cbSuppliersCode", id: "cbIdSuppliersCode", fieldLabel: "供应商代
阅读全文
摘要:1、数字转换成字符串的三种方法var number=100; 1) var strValue=number+""; 2) var strValue=String(number) 3) var strValue=number.toString(); (注) number.toString() 也可以指定数字基数进行转换 二进制:number.toString(2); 八进制:"0"+number.toString(8); 十六进制 "0x"+number.toString(16);var number2=123456.789 numbe
阅读全文
摘要:Microsoft JScript 运行时错误: 'events' 为空或不是对象一般是 最后一个item 块的{}多了逗号 { xtype: "combo", triggerAction: "all", mode: "remote", minChars: 1, queryParam: "search", forceSelection: true, editable: true, hiddenName: "cbSuppliersCode", id: "cbIdSuppl
阅读全文
摘要:<table><tr> <td style="padding:10px;"> <a href="http://www.tec-it.com" title="TEC-IT 条码软件"> <img src="http://www.tec-it.com/pics/banner/web/TEC-IT_Banner_120x42.gif" alt="TEC-IT 条码软件" border="0" /> </a> &
阅读全文
摘要:exec sp_password '旧密码','新密码','用户名'
阅读全文
摘要:/*1.--得到数据库的文件目录@dbname 指定要取得目录的数据库名如果指定的数据不存在,返回安装SQL时设置的默认数据目录如果指定NULL,则返回默认的SQL备份目录名*//*--调用示例select 数据库文件目录=dbo.f_getdbpath('tempdb'),[默认SQL SERVER数据目录]=dbo.f_getdbpath(''),[默认SQL SERVER备份目录]=dbo.f_getdbpath(null)--*/if exists (select * from dbo.sysobjects where id = object_id(N&
阅读全文