简单分页教程..
作者:cmscn 日期:2008-08-13
关于多条件搜索的问题
作者:cmscn 日期:2008-08-11
关于多条件查询分页
作者:cmscn 日期:2008-08-11
多条件查询
作者:cmscn 日期:2008-08-11
表单验证制作方法!
作者:cmscn 日期:2008-08-11
<form name="theform" action="aaa" method="POST" enctype=text/plain" onSubmit="return formCheck()">
<script language="javascript">
function formCheck() { if ("" == document.theform.name.value) {
alert("请输入你的姓名")
document.theform.name.focus()
return false
} if ("" == document.theform.address.value) {
<script language="javascript">
function formCheck() { if ("" == document.theform.name.value) {
alert("请输入你的姓名")
document.theform.name.focus()
return false
} if ("" == document.theform.address.value) {
表单验证类
作者:cmscn 日期:2008-08-11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
常用表单格式技巧
作者:cmscn 日期:2008-08-11
1.表单文本输入的移动选择:在文本输入栏中,如果加入了提示,来访者往往要用鼠标选取后删除,再输入有用的信息。其实只要加入onMouseOver="this.focus()" onFocus="this.select()" 代码到 <textarea> 中,一切就会变得简单多了,如:<textarea name=textarea wrap=virtual rows=2 cols=22 onMouseOver="this.focus()" onFocus="this.select()">Input English..</textarea> ,类似的,可以加入代码到<input>。
2.表单输入单元点击删除:本列同上则作用类似,只是使用鼠标上略有变化,需要点击而不像上则的只要鼠标覆盖。如:<input type=text name="address" size=19 value="Enter,e-mail..." onFocus="this.value=''" >,点击输入单元后,提示信息会删除,是不是很方便。
3.表单输入单元的边框设置:更改传统的表单单元边框,会让你的主页生色不少。如:<input type=radio name=action value=subscribe checked style="BORDER-BOTTOM: dashed 1px; BORDER-LEFT: dashed 1px; BORDER-RIGHT: dashed 1px; BORDER-TOP: dashed 1px;background-color: #FEF5C8">,其中"style=***"为左右上下和背景色设置,适用于其它单元,请读者亲自试试。
4.表单输入单元的文字设置:表单中单元的字体是可以修改的,如:<input type=text name="address" size=19 value="Enter,e-mail..." style=font-family:"verdana";font-size:10px > ,其中"style=***"为字体和字大小设置。
2.表单输入单元点击删除:本列同上则作用类似,只是使用鼠标上略有变化,需要点击而不像上则的只要鼠标覆盖。如:<input type=text name="address" size=19 value="Enter,e-mail..." onFocus="this.value=''" >,点击输入单元后,提示信息会删除,是不是很方便。
3.表单输入单元的边框设置:更改传统的表单单元边框,会让你的主页生色不少。如:<input type=radio name=action value=subscribe checked style="BORDER-BOTTOM: dashed 1px; BORDER-LEFT: dashed 1px; BORDER-RIGHT: dashed 1px; BORDER-TOP: dashed 1px;background-color: #FEF5C8">,其中"style=***"为左右上下和背景色设置,适用于其它单元,请读者亲自试试。
4.表单输入单元的文字设置:表单中单元的字体是可以修改的,如:<input type=text name="address" size=19 value="Enter,e-mail..." style=font-family:"verdana";font-size:10px > ,其中"style=***"为字体和字大小设置。
Tags: 表单
sql 多条件查询的一种简单的方法
作者:cmscn 日期:2008-08-11
以后我们做多条件查询,一种是排列结合,另一种是动态拼接SQL
如:我们要有两个条件,一个日期@addDate,一个是@name
第一种写法是
if (@addDate is not null) and (@name <> '')
select * from table where addDate = @addDate and name = @name
else if (@addDate is not null) and (@name ='')
select * from table where addDate = @addDate
如:我们要有两个条件,一个日期@addDate,一个是@name
第一种写法是
if (@addDate is not null) and (@name <> '')
select * from table where addDate = @addDate and name = @name
else if (@addDate is not null) and (@name ='')
select * from table where addDate = @addDate
asp下实现多条件模糊查询SQL语句
作者:cmscn 日期:2008-08-10
摘要:这篇文章主要针对有一定asp编程经验和SQL语句基础的爱好者如何写模糊查询语句和多条件查询。
很多网友问到如何写模糊查询语句和多条件查询,今天网友小爱又问起了这个问题,刚好前几天给一个单位写个OA涉及到多条件模糊查询,那个查询比较多、专业名词也多,这里我整理了一下,假设以姓名、性别、电话号...作为数据库中的字段名。
通常写一个简单的模糊查询的SQL语句格式可以如下例:
sql="select * from 表名 where 字段名 like ’%" & request.form("请求变量") & "%’ "
很多网友问到如何写模糊查询语句和多条件查询,今天网友小爱又问起了这个问题,刚好前几天给一个单位写个OA涉及到多条件模糊查询,那个查询比较多、专业名词也多,这里我整理了一下,假设以姓名、性别、电话号...作为数据库中的字段名。
通常写一个简单的模糊查询的SQL语句格式可以如下例:
sql="select * from 表名 where 字段名 like ’%" & request.form("请求变量") & "%’ "