随笔分类 -  asp

asp
asp 多步OLE DB操作错误 解决方案
摘要:出现这种错误,原因1、数据类型与数据库类型不符;2、数据长度超出数据库最大长度。 阅读全文
posted @ 2013-05-16 11:20 逆时间生活 阅读(267) 评论(0) 推荐(0)
asp获取来源Url
摘要:Function GetUrl() On Error Resume Next Dim strTemp If LCase(Request.ServerVariables("HTTPS")) = "off" Then strTemp = "http://" Else strTemp = "https://" End If strTemp = strTemp & Request.ServerVariables("SERVER_NAME") If Request.ServerVariables( 阅读全文
posted @ 2012-10-22 14:27 逆时间生活 阅读(529) 评论(0) 推荐(0)