预览模式: 普通 | 列表

网页字体特效代码大全

1、彩色字体色彩绚丽
</font><br>
<P align=center><STRONG><FONT size=6><FONT face=华文新魏><FONT color=#ff0000>彩
</FONT><FONT color=#ff8900>色</FONT><FONT color=#92c000>字</FONT><FONT color=#00c024>体</FONT><FONT color=#00c0da>色</FONT><FONT color=#0053ff>彩</FONT><FONT color=#4800ff> 绚</FONT><FONT color=#ff00ff>丽</FONT></FONT></FONT></STRONG></P>

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 2551

FCKeditor 中文乱码成功解决方法

MY成功解决方法

把这个包含文件里面fckeditor.asp

<!--#include file="FCKeditor/fckeditor.asp" -->

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 4929

asp取时间

nowtime=now()
shijian=cstr(year(nowtime))+right("0"+cstr(month(nowtime)),2)+right("0"+cstr(day(nowtime)),2)+right("0"+cstr(hour(nowtime)),2)+right("0"+cstr(minute(nowtime)),2)

<%=year(now)%>年<%=month(now)%>月<%=day(now)%>日

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 3105

成功的ASP批量删除修改操作实例

<!-- #include file="conn.asp" --><!-- #include file="check.asp" --><!-- #include file="md5.asp" --><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>后台管理中心</title>
<LINK href="admin.css" type=text/css rel=stylesheet>

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 3063

ASP批量删除操作代码[全]

方法一:
<%
id=request.form("checkbox")
id=Split(id,",")
shu=0

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 2277

asp返回上一页

response.write(" <script language='javascript'>history.go(-1); </script>")
返回,不刷新,保留之前表单数据;

Response.Write "<script>alert('操作有误,请核实!');window.location='"&request.servervariables("http_referer")&"';</script>"
返回,刷新,重新读取原始表单数据。

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 2968

最简单的在线聊天程序

index.asp


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 16870

asp循环语句

1.Do...Loop循环
     使用Do...Loop语句多次执行语句块,当条件为True时或条件变为True之前,重复执行语句块
     While 关键字用于检查Do...Loop语句中的条件。有两种检查方式:①在进入循环之前检查条件;②或者在循环至少运行完一次之后检查条件
     下为两实例
①<Script Language="VBS">

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 2787

FSO在线编辑

<%@ Language=VBscript %>
<%
Response.Buffer=true
On Error Resume Next
Server.ScriptTimeOut = 1000

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 2391

简单的ASP在线文件管理+上传源码

<SCRIPT LANGUAGE="JavaScript">
function password() {
var testV = 1;
var pass1 = prompt('请输入管理文件的密码(如果你不是阿赛,请不要尝试啦!谢谢合作!):','');
while (testV < 3) {

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 3598
<%@ language="javascript"%>
<%var self = Request.serverVariables("SCRIPT_NAME");
if (Request.serverVariables("REQUEST_METHOD")=="POST")
{
var oo = new uploadFile();

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 2456

通用分页程序带限制功能

代码中的totalpage=rs.pagecount
page=int(request("page"))
<%
sub spitpage()
StartPageNum=1

查看更多...

分类:应用开发 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 2516