我的番茄炒蛋
生活如此精彩,挑战无处不在!

导航

 

2006年4月3日

摘要: 以下内容来自Vistone Blog http://www.vistone.com/ ColdFusion mx 7.0为我们提供一系列完整的数据处理和格式化函数,一共有18个大类,411个函数。在使用ColdFusion mx 7.0函数时需要记住以下几点: 1、函数名不区分大小写。所以CreateUUID( )和createuuid( ) 表达的是一个意思。 2、在ColdFusion MX... 阅读全文
posted @ 2006-04-03 16:18 bluesky 阅读(1607) 评论(0) 推荐(0) 编辑
 
摘要: 要求: 能够读取按照 INI文件的Section和Key来读出相应的Value。 比如一个配置文件 SMSVote.ini --------------------------------- [SMSVote] Server=(local) DB=SMSVote User=sa PassWord=123 [DB2Vote] Server=192.168.0.1 DB=... 阅读全文
posted @ 2006-04-03 11:40 bluesky 阅读(426) 评论(1) 推荐(0) 编辑
 

2006年3月25日

摘要: Creating a PDF with ASPBy Ty Button print this article email this article to a colleague IntroductionAdobe's PDF format has become the lingua franca of cross-platform reporting for many agencies an... 阅读全文
posted @ 2006-03-25 08:10 bluesky 阅读(1124) 评论(0) 推荐(0) 编辑
 
摘要: 一、备份数据库 1、打开SQL企业管理器,在控制台根目录中依次点开Microsoft SQL Server 2、SQL Server组-->双击打开你的服务器-->双击打开数据库目录 3、选择你的数据库名称(如论坛数据库Forum)-->然后点上面菜单中的工具-->选择备份数据库 4、备份选项选择完全备份,目的中的备份到如果原来有路径和名称则选中名称点删除,然后点添加,如果原来没有路径和名称则直... 阅读全文
posted @ 2006-03-25 07:54 bluesky 阅读(417) 评论(0) 推荐(0) 编辑
 
摘要: 树形目录显示程序 问题描述: 在我们项目中常常会出现自关联的数据表,如果我们从整体看去,整个表就呈现为一个树形数据结构(对于复杂的情况,它可能变成一个图)。当我们对这个表进行显示,编辑时,如果不采用好的表现形式,会显得很笨拙,为此,我们开发这样的树形结构的程序。在上一版本中,我们使用的是递归算法来实现,在我们对这个算法评测时发现,对于拥有成千上万条记录的数据库就不再能胜任了,所以在新的算法版本中,... 阅读全文
posted @ 2006-03-25 07:52 bluesky 阅读(273) 评论(0) 推荐(0) 编辑
 
摘要: [code].." l=showPageC\2 If currentPage-lcountPage Then Exit For If queryStr="" Then getStr="cp=" & i Else getStr=queryStr & "&cp=" & i End If If... 阅读全文
posted @ 2006-03-25 07:48 bluesky 阅读(184) 评论(0) 推荐(0) 编辑
 
摘要: 介绍以下函数的用法,一般,如显示新闻内容的ASP文件都要至少收集id 的值,如果你的最终显示的新闻串的值为 s 的话 调用方法就是: 演示地址: http://www.w2000.com.cn/sweet/doc/show.asp?id=404 此函数功能:显示长文章的页数并显示出当前页的新闻 注:这个函数一看就知道是在服务器端运行的,难免会... 阅读全文
posted @ 2006-03-25 07:45 bluesky 阅读(327) 评论(0) 推荐(0) 编辑
 
摘要: 这样的方法最建议的方法就是用此生成HTML,如果每次都这样处理的话??? 演示地址: http://54caizi.com/kingcode.asp 绝对算不上是完美版,就此与大家分享下 近些日在NB上看到了这样的功能,就想到了来做,最开始写的还是JAVA类,今天花了点时间整理了下,转换成了ASP类,给一些做文章显示的兄弟姐妹们用,算是给大家一个元旦“红包”吧。。。 :) 好了,费话... 阅读全文
posted @ 2006-03-25 07:42 bluesky 阅读(384) 评论(0) 推荐(0) 编辑
 
摘要: 把下面的代码COPY成两个文件再把SQL语句和连接串改了就可以了。。。。 演示地址:http://www.w2000.com.cn/sweet/class.asp [CODE]0 Then Err.Clear initObject = 1 Exit Function End If ... 阅读全文
posted @ 2006-03-25 07:40 bluesky 阅读(300) 评论(0) 推荐(0) 编辑
 
摘要: 加密写法 server.URLEncode(str)解密代码3 then isvalidhex=false:exit function if left(str,1)"%" then isvalidhex=false:exit function c=mid(str,2,1) if not (((c>="0") and (c="A") and (c="0") and (c="A") and... 阅读全文
posted @ 2006-03-25 07:01 bluesky 阅读(2476) 评论(0) 推荐(0) 编辑
 

2006年3月21日

摘要: "" Then strNewValue = Replace(strValue,"",">") strNewValue = Replace(strNewValue,"'","'") strNewValue = Replace(strNewValue,"""",""") strNewValue = Replace(strNewValue,vbCrLf,"") strNewV 阅读全文
posted @ 2006-03-21 11:07 bluesky 阅读(279) 评论(0) 推荐(0) 编辑
 
摘要: On error resume nextDim JMail, contentIdSet JMail = Server.CreateObject("JMail.Message") JMail.Charset = "gb2312" ' 邮件字符集,默认为"US-ASCII"' JMail.ISOEncodeHeaders = False ' 是否进行ISO编码,默认为True' 发送者信息(可用变量方... 阅读全文
posted @ 2006-03-21 11:06 bluesky 阅读(986) 评论(4) 推荐(0) 编辑
 
摘要: 0 Then IsTrue = False Err.Clear End if Content = Stream.ReadText(Stream.Size) if Not IsAnsi Then Content=Bytes2bStr(Content) End Prope... 阅读全文
posted @ 2006-03-21 11:03 bluesky 阅读(261) 评论(0) 推荐(0) 编辑
 
摘要: 好看的CSDN Button 好看的Green Button 好看的Green Button 好看的 Button 好看的QQ Buttonhttp://blog.csdn.net/juwuyi"> 好看的 2k3 Button 阅读全文
posted @ 2006-03-21 11:02 bluesky 阅读(2005) 评论(0) 推荐(0) 编辑
 
摘要: 阅读全文
posted @ 2006-03-21 10:58 bluesky 阅读(607) 评论(1) 推荐(0) 编辑