搜索列表
-
获取远程flash并保存到本地
【ASP编程】复制代码 代码如下:<% '-------------------------------------------------------------- Dbname = "../data/flash.mdb" '更改数据库文件位置,强烈建议更改为.asp的文件! Set Conn = Server....
获取远程flash并保存到本地 -
批量复制数据
【ASP编程】现有表Special和表view数据结构相同的两个表: 复制代码 代码如下:Special Specialid NClass name pic 1 &...
批量复制数据 -
在asp中通过getrows实现数据库记录分页的一段代码
【ASP编程】复制代码 代码如下:<%@ Language = VBSCRIPT %> <% Option Explicit %> <% rem 在asp中通过getrows实现数据库记录分页的一段代码 Dim iStart, iOffset &nbs...
在asp中通过getrows实现数据库记录分页的一段代码 -
本站用的rss输出
【XML/RSS】用了getrows提高效率复制代码 代码如下:<% Response.Charset = "GB2312" Response.ContentType="text/xml" Response.Expires=60 Response.Write("<?xml version=""1.0"" encoding=""GB2312""?>") response.write("<?xml-stylesheet type=""text/css"" ...
本站用的rss输出 -
如何提高Request集合的使用效率?
【编程10000问】strtitle=Request.Form("title")strFirstName=Request.Form("FirstName") strLastName=Request.Form("LastName") If Len(strtitle) Then strtitle=strtitle & " " If strFirstName="" Then strFullName=strtitle & " " & strLastName Elseif L...
|如何|何提|提高|高R|Re|eq|qu|ue|es|st|t集|集合|合的|的使|使用|用效|效率|率?|?| -
如何侦测HTTP表头信息?
【编程10000问】<html><head><title> 千花飞舞之HTTP headERS侦测< /title></head><body><TABLE BORDER=1><tr><td VALIGN=TOP><B>变量</B></td><td VALIGN=TOP><B>值</B>&...
|如何|何侦|侦测|测H|HT|TT|TP|P表|表头|头信|信息|息?|?| -
如何处理超时事件?
【编程10000问】如何处理超时事件?1、IIS为一个死循的执行过程设定执行时间(缺省为90秒)超时事件:<%response.buffer=true%><body><html><%DO counter=counter+1 response.write counter & "<br>" response.flushLOOP%></body></html>2、...
|如何|何处|处理|理超|超时|时事|事件|件?|?| -
如何验证日期输入是否正确?
【编程10000问】<%Option ExplicitDim strDate ' 记录输入的日期,字符型.Dim datDate ' 测试输入的日期是否正确,日期型.<html>%><head><title>千花飞舞之日期验证</title><meta http...
|如何|何验|验证|证日|日期|期输|输入|入是|是否|否正|正确|确?|?| -
如何在线更改密码?
【编程10000问】<%id = Request("id")newpassword = Request("password")newpasswordtemp = Request("passwordtemp") If newpassword <> newpasswordtemp ThenResponse.Write "<center>对不起,新密码与新密码确认不同.请重试!</center>"Response.EndEnd IfSet conn = Server.Crea...
|如何|何在|在线|线更|更改|改密|密码|码?|?| -
如何让用户也能修改密码?
【编程10000问】<%id = Request("id")newpassword = Request("password")newpasswordtemp = Request("passwordtemp")If newpassword <> newpasswordtemp ThenResponse.Write "<center>对不起,密码未能确认,请重新输入!</center>"Response.EndEnd If Set conn = Server.CreateObj...
|如何|何让|让用|用户|户也|也能|能修|修改|改密|密码|码?|?| -
如何取回已忘记的密码?
【编程10000问】forget.asp' 申请.<html><head><title>闪亮日子之用户密码核实</title></head><div align="center"><center><table border="0" cellspacing="0" width="600" height="158" > <tr> <td height="67"><p alig...
|如何|何取|取回|回已|已忘|忘记|记的|的密|密码|码?|?| -
如何做一个随机密码产生器?
【编程10000问】<%genPassword = ""RandomizeFor i = 1 to 8intNum = Int(10 * Rnd + 48)intUpper = Int(26 * Rnd + 65)intLower = Int(26 * Rnd + 97)intRand = Int(3 * Rnd + 1)Select Case intRandCase 1strPartPass = Chr(intNum)Case 2strPartPass = Chr(intUpper)Case 3strPartPass = Chr(intLow...
|如何|何做|做一|一个|个随|随机|机密|密码|码产|产生|生器|器?|?|