上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: jQuery获取Select选择的Text和Value:语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text3. var checkValue=$("#select_id").val(); //获取Select选择的Value4. var check 阅读全文
posted @ 2013-05-21 10:32 Trilyn 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 前端: $.get("ProduceTemplateHandler.ashx?handlerType=GetPTStyle", { PDStyle: PDStyle }, function (data) { data = eval(data); if (data != null && data != '') { var selPTStyle = $("#selPTStyle"); selPTStyle.empty(); var option = ""; for (var i = 0; i < da 阅读全文
posted @ 2013-05-21 08:51 Trilyn 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 增加数据Import from aaa.del of del messages msg.out insert into productImport from aaa.del of del messages msgout insert into product(price,prod_no,description)2. 更新已经存在的数据及加入新数据Import from aaa.del of del messages msg.out replace into product3. 替换数据Import from aaa.del of del messages msg.outreplace_crea 阅读全文
posted @ 2013-05-20 23:53 Trilyn 阅读(592) 评论(0) 推荐(0) 编辑
摘要: DB2 修改登录用户的密码connect to <mydb> user <username> using <old password> new <new password> confirm <new password again>1、打开命令行窗口 #db2cmd2、打开控制中心 # db2cmd db2cc3、打开命令编辑器 db2cmd db2ce=====操作数据库命令=====4、启动数据库实例 #db2start5、停止数据库实例 #db2stop 如果你不能停止数据库由于激活的连接,在运行db2stop前执行db2 for 阅读全文
posted @ 2013-05-20 23:52 Trilyn 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 控件页面:最好有隐藏控件,以便写属性<input id="hidDictNo" runat="server" type="hidden" />public string DictNo //字典项编号属性{ get { return hidDictNo.Value; } set { hidDictNo.Value = value; }}引用页面:注册:<%@ Register TagPrefix="dict" TagName="dictItem" Src="HRDict 阅读全文
posted @ 2013-05-20 23:51 Trilyn 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 方法一:在配置中配置环境<connectionStrings><add connectionString="server=192.168.24.252;uid=sa;pwd=jh0101;database=C6V3ZP" name="SqlConn"/></connectionStrings>string conn = System.Configuration.ConfigurationManager.ConnectionStrings["SqlConn"].ConnectionString;方法二 阅读全文
posted @ 2013-05-20 23:50 Trilyn 阅读(194) 评论(0) 推荐(0) 编辑
摘要: //导出word function outWord() { try { //创建word应用程序对象 var wordapp = new ActiveXObject("word.application"); //显示word应用程序窗口 wordapp.visible = false; //设置word文件模板的路径 var s = getFileTemplatePath(); //打开要填写的模板 var worddoc = wordapp.application.documents.open(s); var range; range = wordapp.activedo 阅读全文
posted @ 2013-05-20 23:50 Trilyn 阅读(245) 评论(0) 推荐(0) 编辑
摘要: A页面前台js加密:userID = escape(userID);B页面后台解密:headResp = Request["headResp"]; headResp = Server.UrlDecode(headResp); 阅读全文
posted @ 2013-05-20 23:49 Trilyn 阅读(234) 评论(0) 推荐(0) 编辑
摘要: <img src="../images/navigator/06信息交流/内部博客模块逻辑关联图.png" width="1381px" height="637px" usemap="#mkdht" border="0"/> <map name="mkdht"> <area shape="rect" coords="745,138,1045,182" href="../../JHSoft.Web. 阅读全文
posted @ 2013-05-20 23:48 Trilyn 阅读(111) 评论(0) 推荐(0) 编辑
摘要: exec sp_MSforeachtable N' if exists(select 1 from ?) print ''?''+''(Y)'' else print ''?''+''(N)''' 阅读全文
posted @ 2013-05-20 23:47 Trilyn 阅读(285) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页