文章目录:
哪有博客asp源代码
漫言阁个人博客 v4.0 Beta 1
1、增加换肤风格切换功能
2、增加167首音乐播放功能
3、增加热门日志功能
4、增加精华日志功能
5、增加首页显示最新日志功能
6、增加隐藏或显示侧边栏功能
7、增加繁体简体随意切换功能
8、相册功能,在线发布相册及修改相册分类
9、论坛功能,在线编辑论坛分类
10、书签功能
11、TAGS功能、TAGS搜索功能
12、下载系统,在线编辑下载分类
13、在线上传增强
14、完全站点统计功能
15、站内搜索增强
16、正常或者列表显示日志功能
17、添加到网摘功能
18、RSS1.0和2.0支持
19、可爱表情100多个
20、可选择留言评论是否要输入验证码
21、超强链接提示功能
22、多媒体文件自动播放功能
23、IP过滤
24、增加“转换剪切板数据”,在发表或编辑日志时,自动将剪切板数据转换为UBB代码
25、对页面进行重新用DIV+CSS重构,方便皮肤切换,利于搜索收录,界面清爽
26、日志树型显示模式、长日志分页浏览功能
27、程序代码的复制、运行、保存功能
28、日志发表的预览功能
29、增加首页公告
30、增加只有会员才能下载或者浏览的内容
31、日志文字大小控制
32、每个页面精确访问来源统计显示
33、访问者本地天气预报显示(超酷)
用户:漫言阁
密码:up52.com
地址
asp自适应手机源码是什么意思
asp自适应手机源码
就是用于手机端的asp手机网站程序的代码文件
asp博客源代码,急!
;sName=onsContent=onkeyword=%B2%A9%BF%CD
找了半天就找着这几个能下载的,不知能否帮上忙!
asp程序实现简单的注册,登录网页的源代码
1,(index.asp 用户登陆页面)
!-- #include file="conn.asp" --
!-- blog.soowooo.cn 悠悠长假期 --
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
title会员/title
style type="text/css"
!--
body,td,th {
font-family: 宋体;
font-size: 14px;
}
--
/style
/head
body
center
p会员注册系统/p
form name="form1" method="post" action="login.asp"
table width="34%" border="0"
tr
td width="33%" height="30"用户名:/td
td width="67%" height="30"input name="username" type="text" id="username" size="15"/td
/tr
tr
td height="30"密 码:/td
td height="30"input name="password" type="password" id="password" size="15"/td
/tr
tr
td colspan="2" align="center"input type="submit" name="Submit" value="确定"
input type="reset" name="Submit" value="重置"/td
/tr
tr
td colspan="2"a href="reg.asp" target="_self"注册/a/td
/tr
/table
/form
/center
/body
/html
2,(login.asp 用户数据处理文件)
!-- #include file="conn.asp" --
%
'打开数据库判断用户是否存在,info为表名,username为字段名
set rsc=server.createobject("adodb.recordset")
sqlc="select * from info where username='"request.Form("username")"' and password='"request.Form("password")"'"
rsc.open sqlc,conn,1,1
session("username")=rsc("username")
session("password")=rsc("password")
session.Timeout=30
set rsc=nothing
response.Redirect("change.asp")
'如果用户不存在,session("username")为空
%
3,(change.asp 用户信息修改页面)
!-- #include file="conn.asp" --
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
title修改/title
style type="text/css"
!--
body,td,th {
font-size: 14px;
}
--
/style/head
center
body
br
%
set rsc=server.createobject("adodb.recordset")
sqlc="select * from info where username='"session("username")"' and password='"session("password")"'"
rsc.open sqlc,conn,1,1
nr=rsc("password")
username=rsc("username")
password=rsc("password")
sex=rsc("sex")
qq=rsc("qq")
mail=rsc("mail")
add=rsc("add")
personalinfo=rsc("personalinfo")
vv=rsc("ntime")
set rsc=nothing
if nr="" then
response.Redirect("index.asp")
end if
if strcomp(nr,request.Form("password"))=0 then
response.Write("欢迎你!"request.Form("username"))
response.Write("你是在"vv"注册的")
session("username")=request.Form("username")
end if
if session("username")="" then
response.Redirect("index.asp")
end if
%
form name="form1" method="post" action="change.asp?ac=ch"
table width="39%" height="105" border="0"
tr
td width="27%" height="30"用户名:/td
td width="73%" height="30"input name="username" type="text" id="username" value="%=username%"
*/td
/tr
tr
td height="30"密 码:/td
td height="30"input name="password" type="text" id="password" value="%=password%"
*/td
/tr
tr
td height="30"性 别:/td
td height="30"input name="sex" type="text" id="sex" value="%=sex%"/td
/tr
tr
td height="30"QQ:/td
td height="30"input name="qq" type="text" id="qq" value="%=qq%"/td
/tr
tr
td height="30"Mail:/td
td height="30"input name="mail" type="text" id="mail" value="%=mail%"/td
/tr
tr
td height="30"地 址:/td
td height="30"input name="add" type="text" id="add" value="%=add%"/td
/tr
tr
td介绍/td
tdtextarea name="personalinfo" cols="30" rows="6" id="personalinfo"%=personalinfo%/textarea/td
/tr
tr
td /td
tdinput type="submit" name="Submit" value="修改"
a href="change.asp?se=y" target="_self"退出系统/a/td
% if strcomp(request.QueryString("se"),"y")=0 then
session("username")=""
response.Redirect("index.asp")
end if
%
/tr
/table
/form
%
if strcomp(request.QueryString("ac"),"ch")=0 then
set rs=server.createobject("adodb.recordset")
sql="select * from info where username='"session("username")"'"
rs.open sql,conn,1,3
rs("username")=request.Form("username")
rs("password")=request.Form("password")
rs("mail")=request.Form("mail")
rs("sex")=request.Form("sex")
rs("qq")=request.Form("qq")
rs("add")=request.Form("add")
rs("personalinfo")=request.Form("personalinfo")
rs.update
set rs=nothing
response.Write("修改完成!")
end if
%
/body
/center
/html
4,(reg.asp 新用户注册页面)
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
title用户注册/title
style type="text/css"
!--
body,td,th {
font-family: 宋体;
font-size: 14px;
}
--
/style
/head
body
center
用户注册br
%
=request.QueryString("msg")
%
form name="form1" method="post" action="addnewdata.asp?ac=adduser"
table width="39%" height="105" border="0"
tr
td width="27%" height="30"用户名:/td
td width="73%" height="30"input name="username" type="text" id="username"
*/td
/tr
tr
td height="30"密码:/td
td height="30"input name="password" type="password" id="password"
*/td
/tr
tr
td height="30"确定密码:/td
td height="30"input name="password2" type="password" id="password2"
*/td
/tr
tr
td height="30"性别:/td
td height="30"input name="sex" type="text" id="sex"/td
/tr
tr
td height="30"QQ:/td
td height="30"input name="qq" type="text" id="qq"/td
/tr
tr
td height="30"Mail:/td
td height="30"input name="mail" type="text" id="mail"/td
/tr
tr
td height="30"地址:/td
td height="30"input name="add" type="text" id="add"/td
/tr
tr
td个人介绍/td
tdtextarea name="personalinfo" cols="30" rows="6" id="personalinfo"/textarea/td
/tr
tr
td /td
tdinput type="submit" name="Submit" value="提交"/td
/tr
/table
/form
/center
/body
/html
5,(addnewdata.asp 新用户注册数据处理文件)
!-- #include file="conn.asp" --
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
title成功/title
/head
body
%
ac=request.QueryString("ac")
msg="注册错误信息"
if request.Form("username")="" then
msg=msg"br""用户名不能为空"
end if
if strcomp(cstr(request.Form("password")),cstr(request.Form("password2")))0 then
msg=msg"br""两次密码输入不同"
end if
if len(request.Form("password"))6 then
msg=msg"br""密码太简单"
end if
if strcomp(msg,"注册错误信息")0 then
response.Redirect("reg.asp?msg="msg)
end if
if ac="adduser" then
set rsc=server.createobject("adodb.recordset")
sql="select * from info where username='"request.Form("username")"'"
rsc.open sql,conn,1,1
ck=rsc("username")
set rsc=nothing
if ck"" then
msg=msg"br""用户名被人注册"
response.Redirect("reg.asp?msg="msg)
end if
dsql="select * from info where id is null"
set rs=server.createobject("adodb.recordset")
rs.open dsql,conn,1,3
rs.addnew
rs("username")=request.Form("username")
rs("password")=request.Form("password")
rs("mail")=request.Form("mail")
rs("sex")=request.Form("sex")
rs("qq")=request.Form("qq")
rs("add")=request.Form("add")
rs("personalinfo")=request.Form("personalinfo")
rs("ntime")=now
rs.update
set rs=nothing
%
center
a href="index.asp" target="_self"注册成功,点击登陆/a
/center
%
end if
%
/body
/html
6,(conn.asp 数据库连接文件)
%
'连接数据库开始
dim conn,rs,sql
on error resume next
dbpath=server.mappath("userinfo.mdb")
set conn=server.createobject("adodb.connection")
conn.open "PROVIDER=Microsoft.jet.OLEDB.4.0;data source="
'创建记录对象
set rs=server.createobject("adodb.recordset")
%
7,(userinfo.mdb ACCESS 数据库)
在ACCESS中建一个表,然后在这个表中建立字段名称
表名:info
字段名称 数据类型
id 自动编号
username 文本
password 文本
sex 文本
quest 文本
qq 文本
mail 文本
personalinfo 文本
ntime 文本
哪儿有博客的asp源代码下载啊?
;keyword=blog
您的位置:中国站长站 下载中心 查找关键字: blog
·以下是查询关键字 blog 的结果: 软件名称和简介 推荐 更新日期 下载次数 文件大小
bo-blog v2.0.3 rc3
v2.0.3对数据结构进行了改变,因…… 推荐 2007-1-5 11:32:00 136 525
运行环境:PHP, MySQL 授权方式:免费软件
sablog-x v1.2
特色说明:
卓越的访问速度和…… 推荐 2007-1-5 10:49:00 1140 397
运行环境:PHP, MySQL 授权方式:免费软件
f2blog v1.1 build 1227 beta(含插件)
一款基于PHP的、以MySQL为数据…… 推荐 2006-12-29 23:10:00 295 1945
运行环境:PHP, MySQL 授权方式:免费软件
f2blog v1.1 build 1227 beta(不含插件)
一款基于PHP的、以MySQL为数据…… 推荐 2006-12-29 23:10:00 1533 718
运行环境:PHP, MySQL 授权方式:免费软件
okphp blog v4.1.1 build 1224
一套多用户BLOG站点,可与目前常见…… 推荐 2006-12-25 10:18:00 4094 2171
运行环境:PHP, MySQL 授权方式:共享软件
寒心四射hosin blog v1.36
具有留言本、日志搜索,插件管理,评论…… 推荐 2006-12-24 23:23:00 9423 1354
运行环境:ASP 授权方式:免费软件
blogmethods v1.0 基础版
BlogMethods Basic(…… 推荐 2006-12-21 10:26:00 335 12046
运行环境:JSP, Win2K, WinXP, win2003, Linux 授权方式:共享软件
z-blog v1.6 渡虎谷修改版
专门针对SEO在Z-Blog基础上进…… 推荐 2006-12-20 21:52:00 449 1991
运行环境:ASP 授权方式:免费软件
pwblog 多用户博客个人主页系统 v5.1
一套基于php+mysql 数据库平…… 推荐 2006-12-18 16:49:00 1092 2324
运行环境: 授权方式:共享软件
msmax blog build 1029
一个个人博客程序,比较简单实用,能完…… 2006-12-13 11:40:00 1616 1691
运行环境:ASP 授权方式:免费软件
171个 首页 上一页 下一页 尾页 页次:1/18页 10个软件/页 转到
logmethods v1.0 基础版 BlogMethods Basic(…… 推荐 2006-12-21 10:26:00 335 12046 运行环境:JSP, Win2K, WinXP, win2003,
2171 运行环境:PHP, MySQL 授权方式:共享软件 寒心四射hosin blog v1.36 具有留言本、日志搜索,插件管理,评论…… 推荐 2006-12-24
id 自动编号username 文本password 文本sex 文本quest 文本qq 文本mail 文本personalinfo 文本ntime 文本哪儿有博客的asp源
ext/html; charset=gb2312"title修改/titlestyle type="text/css"!--body,td,th { font-size: 14px;}--/style/head