摘要: 1.使用排序使数据有序 通常,你的所有数据真正需要的仅仅是按某种顺序排列。SQL的ORDER BY语句可以以字母或数字顺序组织数据。因此,相似的值按组排序在一起。然而,这个分组时排序的结果,并不是真的分组。ORDER BY显示每条记录而分组可能代表很多记录。 阅读全文
posted @ 2008-04-23 19:26 kantorgong 阅读(2979) 评论(0) 推荐(0) 编辑
摘要: 1.document.write( " "); 输出语句 2.JS中的注释为// 3.传统的HTML文档顺序是:document- >html- >(head,body) 4.一个浏览器窗口中的DOM顺序是:window- >(navigator,screen,history,location,document) 5.得到表单中元素的名称和值:document.getElementById( "表单中元素的ID號 ").name(或value) 6.一个小写转大写的JS: document.getElementById( "output ").value = document.getElementById 阅读全文
posted @ 2008-04-06 11:30 kantorgong 阅读(560) 评论(1) 推荐(0) 编辑
摘要: 输入地址栏可以编辑页面的js 阅读全文
posted @ 2008-04-06 11:16 kantorgong 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 项目中经常遇到三级联动的使用,特别是省市县的三级联动,由于是js调用,修改时无法绑定原来的数据,今天想了一个方法完善了这小小的缺憾@~ 阅读全文
posted @ 2008-04-04 10:50 kantorgong 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 阅读全文
posted @ 2008-03-28 08:33 kantorgong 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 一.常用表单基本取值方法(form1为表单名称,TextBox1为控件ID,以文本框为例,html控件与web服务器控件是一样的) 1.form1.TextBox1.value 2.var txt = document.all.TextBox1; txt.value 3.var txt = document.all["TextBox1"]; txt.value 4.document.getElementById("TextBox1"); 阅读全文
posted @ 2008-03-27 18:13 kantorgong 阅读(2604) 评论(2) 推荐(0) 编辑
摘要: 不怎么在博客园发表文章,以前老在csdn发表一些,最近经常来博客园,于是想在此发表文章,支持一下博客园,哈哈@~ 阅读全文
posted @ 2008-02-22 11:12 kantorgong 阅读(529) 评论(0) 推荐(0) 编辑
摘要: 事务处理 文章来源:http://blog.csdn.net/jantouy/archive/2008/01/29/2071997.aspx 阅读全文
posted @ 2008-01-30 02:32 kantorgong 阅读(106) 评论(0) 推荐(1) 编辑
摘要: 这几天研究一个分页存储过程,尽量做到通用,直接调用即可!简单实用@~文章来源:http://blog.csdn.net/jantouy/archive/2008/01/29/2071985.aspx 阅读全文
posted @ 2008-01-30 02:22 kantorgong 阅读(109) 评论(0) 推荐(1) 编辑
摘要: 批量插入数据的存储过程 CREATE PROCEDURE InsertDB 文章来源:http://blog.csdn.net/jantouy/archive/2007/07/05/1680025.aspx 阅读全文
posted @ 2007-07-06 01:41 kantorgong 阅读(325) 评论(0) 推荐(1) 编辑