如何做聊天室刷屏软件(100分)

  • 主题发起人 主题发起人 reno
  • 开始时间 开始时间
R

reno

Unregistered / Unconfirmed
GUEST, unregistred user!
请问如何做聊天室刷屏软件?做好有源程序!!谢谢
 
有我也要啊
lzy291@263.net
 
去www.qq365.com看看?
 
application
 
可以用timer控件定时向指定的text发送字符及回车键!!
例如用 sendkeys 方法
 
http 空间的post
 
我同意上面这个仁兄的说法,用post,或者是get,head其实都可以的!

一个聊天室,一般都有一个form 他的action就是要提交的地址,然后就是form里面的一些参数了!
不过要注意里面的hidden的一些参数不要忘记了!!
比如
<form action=chat.pl method=post>
<input type=hidden name=name value=whaoye>
<input type=text name=chat size=50>
<input type=submit name=发送></form>

我们就可以 得到url:=http://xxxxx/chat.pl?name=whaoye&chat=你好,很高兴认识你,你明白了没有?
然后就可以定义一个记时器,定时head,get,post等方法提交了!!!!!
 
这样不行吧。
 
以下是在聊天室里查看到的源码,而且php文件用NetAnts不能下载,这种情况又该如何刷屏呢?

<html>

<head>
<!--页面第一次调用时设置main显示窗口内容-->
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<title>信息港::真实社区/聊天室</title>
</head>



<frameset framespacing="0" border="0" rows="1,*,60,0,0,0,0,0" frameborder="0">
<frame name="adv" scrolling="no" noresize src="adv.htm" target="_self">
<frameset cols="*,140">
<frame name="main" scrolling="auto">
<frame name="list" scrolling="yes" src="list.php?room=1&userid=297763">
</frameset>
<frame name="footer" scrolling="no" noresize target="main" src="message.php?room=1">
<frame name="refresh" marginwidth="0" marginheight="0" scrolling="no" src="refresh.php?username=阿C&room=1&sex=女" target="main">
<frame name="file" marginwidth="0" marginheight="0" scrolling="no" src="about:blank" target="_self">
<frame name="getinfo" marginwidth="0" marginheight="0" scrolling="no" src="about:blank" target="_self">
<frame name="getbpcallinfo" marginwidth="0" marginheight="0" scrolling="no" src="http://club.0451.net/score_bp_chat.php" target="_self">
<frame name="score" marginwidth="0" marginheight="0" scrolling="no" src="http://club.0451.net/score.php" target="_self">

<noframes>
<body LANGUAGE=javascript onload="return window_onload()">

<p>此网页使用了框架,但您的浏览器不支持框架。</p>

</body>
</noframes>
</frameset>

</html>
 
刷屏只要利用消息循环即可!
 
后退
顶部