预览模式: 普通 | 列表

简单分页教程..

<%
Set conn = Server.CreateObject("ADODB.Connection")
strcon="provider=microsoft.jet.oledb.4.0;data source="& _
server.mappath("mdb.mdb")
conn.Open strcon
Set rs = Server.CreateObject ("ADODB.Recordset")
sql="select * from table order by id desc"

查看更多...

分类:Asp | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 393

关于多条件搜索的问题

<!--#include file="../zj64_publicfile/Const.asp" -->
<!--#include file="../zj64_publicfile/DB_Conn.asp" -->
<%
Dim DBC,Conn
Set DBC = New DataBaseClass
Set Conn = DBC.OpenConnection()
Set DBC = Nothing

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 416

关于多条件查询分页

<%
dim rst,sqlt,temp
set rst=server.CreateObject("adodb.recordset")
sqlt="select * from sj_user where 1=1"
'判断是否选择了菜系类型
if request("caiid")<>"" then
sqlt=sqlt&"and caiid='"&request("caiid")&"'"

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 435

多条件查询

sql="select * from user where"
if username<>"" then
sql=sql&" username like'%"&username&"%'"
flag=1
elseif tel<>"" and flag=1 then
sql=sql&" and tel like '%"&tel&"%'"
flag=1

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 406

表单验证制作方法!

  <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) {

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 441

表单验证类

<!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">
<!--

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 513

常用表单格式技巧

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=***"为字体和字大小设置。

查看更多...

Tags: 表单

分类:Html | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 491

sql 多条件查询的一种简单的方法

以后我们做多条件查询,一种是排列结合,另一种是动态拼接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 

查看更多...

分类:Sql | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 426

asp下实现多条件模糊查询SQL语句

摘要:这篇文章主要针对有一定asp编程经验和SQL语句基础的爱好者如何写模糊查询语句和多条件查询。 

很多网友问到如何写模糊查询语句和多条件查询,今天网友小爱又问起了这个问题,刚好前几天给一个单位写个OA涉及到多条件模糊查询,那个查询比较多、专业名词也多,这里我整理了一下,假设以姓名、性别、电话号...作为数据库中的字段名。 

通常写一个简单的模糊查询的SQL语句格式可以如下例: 

sql="select * from 表名 where 字段名 like ’%" & request.form("请求变量") & "%’ "  

查看更多...

分类:Asp | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 409

年月日 表单

<td><select name=iyear><%
  dim bires,birse
  for i=1990 to year(now)
    birse=""
    if int(year(bires))=int(i) then
      birse=" selected"
    end if

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 471