网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > ASP实例
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
网络编程:ASP教程,ASP.NET教程,PHP教程,JSP教程,C#教程,数据库,XML教程,Ajax,Java,Perl,Shell,VB教程,Delphi,C/C++教程,软件工程,J2EE/J2ME,移动开发
本月文章推荐
.用户注册及跟踪代码(三).
.ASP中的函数应用方法及应用举例(.
.利用ASP打造网站论坛DIY.
.利用ASP存取各种常用类型数据库(.
.ASP 编程中20个非常有用的例子.
.构建你的网站新闻自动发布系统之.
.制作我们自己的Ebay(拍卖系统)(2).
.Win2k IIS 远程执行命令漏洞.
.采用XMLHTTP编写一个天气预报的程.
.用Agent+ASP技术制作语音聊天室.
.如何把存储在数据库中的图片根据.
.用EasyMailObject组件处理Exchan.
.Web在线代理(Asp版).
.使用AspImage制作图形(二).
.基于ASP的收发文管理系统的设计与.
.深入讲解 ASP+ 验证(四).
.ASP导出Excel数据的四种方法.
.用asp实现的代码批量修改程序.
.Flash+ASP实现电子互动地图在线标.
.功能非常全面的日期处理函数.

一个免费的简单聊天室源代码

发表日期:2000-12-23


chat.html  
<html>
<head><title>Chat</title></head>
<frameset rows="*,100">
<frame src="chatopinions.asp">
<frame src="chatform.asp">
</frameset>
</html>  

chatopinions.asp  
<html>
<head>
<META HTTP-EQUIV=refresh content="5;URL=chatopinions.asp"></head>
<body bgcolor=FFFFFF>
<center>
<table border=0 width=350>
<tr><td width=50>
<% =Application("A9") %></td><td width=300><% =Application("B9") %>
</td></tr><tr><td>
<% =Application("A8") %></td><td><% =Application("B8") %>
</td></tr><tr><td>
<% =Application("A7") %></td><td><% =Application("B7") %>
</td></tr><tr><td>
<% =Application("A6") %></td><td><% =Application("B6") %>
</td></tr><tr><td>
<% =Application("A5") %></td><td><% =Application("B5") %>
</td></tr><tr><td width=50>
<% =Application("A4") %></td><td><% =Application("B4") %>
</td></tr><tr><td>
<% =Application("A3") %></td><td><% =Application("B3") %>
</td></tr><tr><td>
<% =Application("A2") %></td><td><% =Application("B2") %>
</td></tr><tr><td>
<% =Application("A1") %></td><td><% =Application("B1") %>
</td></tr></table>
<table border=0 width=350>
<tr><td align=right>
Get your chat at <A REF="http://www.submitside.com">Submitside</A>: free script.
</td></tr></table>
</center>
</body>
</html>  

chatform.asp  
<%  
If Request.Form ("Opinion")="" then  
ShowForm()  
else  
  if Session("AA")="" then
  NewUser()
  GoAhead()
  else
  GoAhead()
  end if  
end if %>
<% Sub ShowForm() %>

<html><body  bgcolor=FFFFFF>
<center>
<form method=post action=chatform.asp>
<table border=0><tr><td>
<%  if Session("AA")="" then %>
Chose a name or  nickname  
<input type=text name=Name size=20><BR>
Type your opinion  
<% else %>
<% =Session("AA") %>
<% end if %>
<input type=text size=60 name=Opinion value="<% =request.form("Opinion") %>"><BR>
<input type=submit value="Submit">
</td><tr></table>
</form>
</center>
</body>
</html>

<% End Sub %>

<% Sub GoAhead() %>

<%
BB=Request.form("Opinion")
BB=server.htmlencode(BB)

Application.Lock
Application("B1")=Application("B2")
Application("B2")=Application("B3")
Application("B3")=Application("B4")
Application("B4")=Application("B5")
Application("B5")=Application("B6")
Application("B6")=Application("B7")
Application("B7")=Application("B8")
Application("B8")=Application("B9")
Application("B9")=BB

Application("A1")=Application("A2")
Application("A2")=Application("A3")
Application("A3")=Application("A4")
Application("A4")=Application("A5")
Application("A5")=Application("A6")
Application("A6")=Application("A7")
Application("A7")=Application("A8")
Application("A8")=Application("A9")
Application("A9")=Session("AA")
Application.Unlock
%>

<html>
<head></head><body bgcolor=FFFFFF>
<center>
<form method=post action=chatform.asp>
<table border=0><tr><td>
<% =Session("AA") %> <input type=text size=60 name=Opinion>
<BR><input type=submit value="Submit">
</td></tr></table>
</form>
</center>
</body>
</html>

<% End Sub %>

<% Sub NewUser() %>
  <%
  AA=Request.form("Name")
  AA=server.htmlencode(AA)
  Session("AA")=AA
  %>

<% End Sub %>
 
上一篇:通过事例学习.net的WebForms技术(二) 人气:10533
下一篇:StripNonNumeric函数源程序 人气:12075
浏览全部的内容 Dreamweaver插件下载 网页广告代码 祝你圣诞节快乐 2009年新年快乐