现在我们来讲一下reply.php的代码: --------------------------------- //reply.php <? function check_strlen_long($txt) { $len=strlen($txt); $count=0; for ($i=0;$i<$len;$i++) { if (ord($txt[$i])<128) { $count=$count+1;} if (ord($txt[$i])==10 or ord($txt[$i])==32) {$count=0;} if ($count...[ 查看全文 ]
1.guestbook.php(留言程序) <html <head <script language="JavaScript" <!-- <!-- var hellotext="为了您的最佳浏览效果请您使用IE4.0以上的版本和800*600分辨率" var thetext="" var started=false var step=0 &nbs...[ 查看全文 ]
ScreenSaver.cs using System;using System.Windows.Forms; namespace ScreenSaver{ public class DotNETScreenSaver { [STAThread] static void Main(string[] args) { if (args.Length > 0) { if (args[0].ToLower().Trim().Substring(0,2) == "/c") { MessageBox.Show("This Screen Saver has no options you can set.", ".NET Screen Saver", MessageBoxButtons.OK, Mess...[ 查看全文 ]