制作一个简单的服务器端控制 |
2000082805.aspx
-------------------------------------------------------------
<%@ Register TagPrefix="CJ" Namespace="cjServerControls" %>
<html>
<head>
</head>
<body>
<form method="post" action="2000082605.aspx" …… |
|
获得客房端的MAC(Media Access Control)地址 |
Get the clients MAC(Media Access Control) address, a hardware address that uniquely identifies each
node of a network. Works great on LAN's. Firewalls and Proxy's will be an issue depending what side of
them you're coding for.
Can't Copy and Paste this?
Click here for a copy-and-past…… |
|
动态缓冲 |
Dynamic Caching
By Wayne Berry
Introduction
Caching happens at all levels, on the hard drive, in RAM, and within the operating systems. It is a
performance fundamental of computer science. In 1999, a wave of caching products swept the Internet to
serve graphics faster. These products drove the s…… |
|
特殊的空格字符 |
特殊的空格字符
Author:大风
在asp编程中,我们常常使用trim(rtrim ,ltrim)函数去掉一些数据的开头和结尾的空格,笔者最近写了一个asp聊天室,
有下面的一段代码:
<% dim name,title
name=trim(request.form("name"))
password=trim(request.form("password"))
if name="…… |
|
数据库聊天室的“无刷新”技术要点 |
聊天室是网络实时交互的最常应用之一。聊天室的制作要解决好以下问题。
1、谁在发言
2、讲给谁听
3、讲些什么
与ICQ不同,ICQ 的数据流是一对一的关系。只要解决好上面三个问题就
可以实现。
聊天室由于存在一对多、多对一、一对一等多种数据关系,因此就有一个
数据的存放问题。
ASP 聊天室的数据存放一般有三种形式: 一是…… |
|
列出指定目录下的所有文件和目录 |
<%@ LANGUAGE = VBScript %>
<%Server.ScriptTimeout=5000%>
<html>
<head>
<style TYPE="text/css">
/* Outline Style Sheet */
UL UL {display: none;
margin-left: 20pt}
</style>
<script LANGUAGE="JavaScript&q…… |
|
用ASP做一个记事本编缉器 |
newDoc.asp
----------------------------------------------------------
<%@ Language=VBScript %>
<SCRIPT id=DebugDirectives runat=server language=javascript>
// Set these to true to enable debugging or tracing
@set @debug=false
@set @trace=false
</SCRIPT>
<HTML>
<HEAD>
&l…… |
|
验证信用卡函数(字符串处理) |
验证还取决于信用卡的类型。
'**************************************
' Name: Credit Card Mod 10 Validation
' Description:This function validates if
' a credit card number "appears" to be val
' id, depending on the type of card, and a
' lso performing a Mo…… |
|
无组件图片与文本同步存入数据库的最简单的办法 |
一:前言
首先,没有料到图片与文本的上传会引起这么大的注意。上一篇贴子(Id=435906)贴出后,有不少人来信说看不懂。或
是仍然不能实现。我就以一种完全简单的手法。完成无组件的文本与图片上传数据库所有过程。希望能帮助所有对此有疑
问的网友。
二:准备工作
按照惯例,我先将我的测试环境告诉大家。
系统…… |
|
让Session对象在不同域名下实现共享 |
There is a general belief among developers that session state maintenance is always against one
domain / site. And therefore one can not maintain session state across different domains. Usually there is
no such requirement to maintain session state across different domains. But of late due t…… |
|
在WAP网站上建立反馈表单 |
For any one person to create a web site and then think it is perfect, is ridiculous. It is important to
allow the visitors of our web sites to comment on what we have developed so that we can learn from the end-
user, our mistakes and not to mention the overall effectiveness. We create these facili…… |
|
读取目录下的所有文件(包括子目录下的所有文件) |
******************************
Many times we might need some part of code which will access all sub-folders of the server and also all
files within the sub-folder.
The following line of asp code will map to a specified folder and searches all the sub-folders
(Not recursively, code can be extended…… |
|
pCase 函数源程序 |
To call the function:
mynewvar = PCasefunc(txtFieldName)
<%
Function PCase(strInput)
Dim iPosition ' Our current position in the string (First character = 1)
Dim iSpace ' The position of the next space after our iPosition
Dim strOutput ' Our temporary string used to build the functio…… |
|
产生一个密码,并记录到数据库,然后发送给用户 |
This article Generates a password random, Requires a database and Mails the Password.
<%@language="vbscript" %>
******************************
<%
'code by Manikantan
'Web Developer
'3rd Agenda
'Nungambakkam, Chennai India
%>
<%
set mail= server.CreateObject("cdo…… |
|
ASP中的错误代码技巧 |
When error coding in ASP it’s not as rich an environment as other environments. I really only reports
that there was an error with some Numbers and Descriptions. There is only a few way's I've found to
report these errors back to the end user. I've seen numerous ways of doing it but found …… |
|
利用WSH作定時工作排程(转自:LearnASP) |
利用 WSH 作定時工作排程
一個很常見的 ASP 問題 : "如何定時工作排程執行網頁?", 之所以會問這個問題大部分是因為管理員可能會利用一個 ASP 網頁來作資料庫維護的動作, 如備份...等, 在 Windows NT 平台有一個方法可以做工作排程, 那就是 AT 指令 + Schedule 服務, 但很可惜的是你並沒有法度在命令列 (Command…… |
|
ASP中FSO的神奇功能 - FSO不能做到的 |
作 者 : 甘冀平 ;
FSO确实存在一些弱点 - 比如,它很难处理二进制文件,这包括Word文档、许多图形格式的文件和其他一些文件。然而你仍然可以用其他的方式操作这些文件 - 移动它们、删除它们,等等。你不能做的就是对它们进行打开或者写操作。
另外一个限制是对于文件长度…… |
|
ASP中FSO的神奇功能 - 用FSO进行内容管理 |
作 者 : 甘冀平
到此,你对FSO可能已经有了很好的体会。让我们再深入研究一步,来解决更复杂的难题。
首先,你可能希望对文件改名。为了跟踪所有的文档,你将要重新命名它们以便唯一,这样就可以被系统容易地区
别。很不幸,FSO不允许简单的文件改名操作,所以我们不得不修改一下。
< %
' create the fso …… |
|
ASP中FSO的神奇功能 - 使用FSO进行搜索 |
作 者 : 甘冀平
你也许想:好,现在我知道如何写入文件了。但能做到更多一些吗?下面来试一试为web站点建立一个搜索功能。
建立搜索引擎的关键是递归。主要地,编写一段代码搜索目录下的文件,然后对所有的目录循环执行同样的代码。因
为不能确定总共有多少个子目录,所以必须一遍又一遍地执行搜索代码,直到结…… |
|
ASP中FSO的神奇功能 - 权限许可 |
作 者 : 甘冀平
上面讨论了基本知识,然后说说权限许可的问题。FSO以创建它的用户帐户权限运行,换言之,如果有人从Internet
上访问你的页面,那么这个internet帐户就创建FSO。如果以administrator的身份登录计算机,并且登录页面,那么
administrator帐户就创建了FSO。这是非常重要的,因为一定的帐户拥有一定的权限…… |
|
« ‹ [1][2][3][4][5][6].. › » 20条/页 共346条 |