帝国软件
  设为首页 加入收藏 关于我们
 
解密帝国网站管理系统
栏 目:
 
您的位置:首页 > 技术文档 > ASP编程
用ASP实现免费计数器提供-2
作者: 发布时间:2005-03-12 来源:
4.用户管理程序  
<%Response.Expires=0  
dim input()  
thisfile = server.mappath("counter.asp")  
Set fs = CreateObject("Scripting.FileSystemObject")  
Set thisfile = fs.OpenTextFile(thisfile,1,False)  
count = 0  
do while not thisfile.AtEndOfStream  
thisline = thisfile.readline  
Redim preserve input(count)  
input(count) = thisline  
count = count + 1  
loop  
thisfile.Close  
number=(count-1)/5  
set fs=nothing  
%>  
<html>  
<title>计数器管理系统</title>  
<body>  
<p align="center"><font style="font-size: 20pt">计数器管理系统</font></p>  
<p align="center">目前保留用户 <%=number%>个</p>  
<table width="760">  
<tr>  
<td width="100" ><font color="#FF00FF">编号</font></td>  
<td width="200"><font color="#FF00FF">用户名</font></td>  
<td width="360" ><font color="#FF00FF">网站名</font></td>  
<td width="100" ><font color="#FF00FF">删除</font></td>  
</tr>  
<%x=""  
for i=1 to number  
x=input((i-1)*5+1)  
Response.Write "<tr><td width='100'><font color=#00ffFF>" &i & "</font>"  
Response.Write "<td width=200 ><font color=#FFffFF>"&input((i-1)*5+1)&"</font></td>" Response.Write "<td
width=360 ><font color=#FF00FF>"&input((i-1)*5+4)&"</font></td>"  
Response.Write "<td width=100 align=left><a href=dele.asp?id=" &x& ">删除</a></td></tr>"  
next  
%>  
</table>  
</body>  
</html>  
5.用户删除处理程序dele.asp  
<%Response.Expires=0  
dim input()  
id=Request.QueryString("id")  
thisfile = server.mappath("counter.asp")  
Set fs = CreateObject("Scripting.FileSystemObject")  
Set infile = fs.OpenTextFile(thisfile,1,False)  
counter = 0  
do while not infile.AtEndOfStream  
thisline = infile.readline  
Redim preserve input(counter)  
input(counter) = thisline  
counter = counter + 1  
loop  
infile.Close  
number=(counter-1)/5  
Set outfile = fs.CreateTextFile(thisfile)  
outfile.WriteLine input(0)  
for i=1 to number  
if input((i-1)*5+1)<>id then  
outfile.WriteLine input((i-1)*5+1)  
outfile.WriteLine input((i-1)*5+2)  
outfile.WriteLine input((i-1)*5+3)  
outfile.WriteLine input((i-1)*5+4)  
outfile.WriteLine input((i-1)*5+5)  
end if  
next  
outfile.Close  
set fs=nothing  
Response.Redirect "manage.asp"  
%>  
---------------------------------------------------  
writen by aspboy and powered by http://easp.126.com  
  
评论】【加入收藏夹】【 】【打印】【关闭
※ 相关链接
 ·用ASP实现免费计数器提供-1  (2005-03-12)
 ·用ASP做一个记事本编缉器  (2005-03-12)
 ·用ASP发送HTML格式的邮件  (2005-03-12)
 ·如何用ASP创建日志文件  (2005-03-12)
 ·使用asp+中的若干问题及解决方案  (2005-03-12)
 ·使用ASP重启服务器  (2005-03-12)
 ·如何用ASP建立图表  (2005-03-12)
 ·如何使用asp创建dsn  (2005-03-12)
 ·如何用asp进行base64加密  (2005-03-12)
 ·用ASP创建多栏选项列表  (2005-03-12)

   栏目导行
  PHP编程
  ASP编程
  ASP.NET编程
  JAVA编程
   站点最新
·致合作伙伴的欢迎信
·媒体报道
·帝国软件合作伙伴计划协议
·DiscuzX2.5会员整合通行证发布
·帝国CMS 7.0版本功能建议收集
·帝国网站管理系统2012年授权购买说
·PHPWind8.7会员整合通行证发布
·[官方插件]帝国CMS-访问统计插件
·[官方插件]帝国CMS-sitemap插件
·[官方插件]帝国CMS内容页评论AJAX分
   类别最新
·在ASP中使用数据库
·使用ASP脚本技术
·通过启动脚本来感受ASP的力量
·学习使用ASP对象和组件
·解析asp的脚本语言
·初看ASP-针对初学者
·ASP开发10条经验总结
·ASP之对象总结
·ASP与数据库应用(给初学者)
·关于学习ASP和编程的28个观点
 
关于帝国 | 广告服务 | 联系我们 | 程序开发 | 网站地图 | 留言板 帝国网站管理系统