当前位置: 首页 > 图文教程 > 网络编程 > ASP > 将ASP的Debug变得简单的两个函数

ASP
Microsoft 脚本编码器(3) --- 使用脚本编码器
WAP中的ASP技术(一)
WAP中的ASP技术(二)
WAP中的ASP技术(三)
WAP中的ASP技术(四)
在ADO使用SELECT语法一
在ADO使用SELECT语法二
在ADO使用SELECT语法三
在ADO使用SELECT语法四
在ADO使用SELECT语法五
在ADO使用SELECT语法六
Asp+语法介绍(六)----数据库篇
vbscript错误代码及对应解释大全
ASP系列讲座(三)创建 ASP 页
ASP系列讲座(四)使用脚本语言
ASP系列讲座(五)使用变量和常量
ASP系列讲座(六)编写过程
ASP系列讲座(七)使用组件和对象
ASP系列讲座(八)使用集合
ASP系列讲座(九)设置对象作用域

将ASP的Debug变得简单的两个函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 48 ::
收藏到网摘: n/a

 

<%
'---------------------------------------------------------------------------
'                   程序作用:打印request.form输入的所有值
'---------------------------------------------------------------------------
Response.Write FormData()
    function FormData()
     Dim llngMaxFieldIndex
     Dim llngFieldIndex
     Dim llngMaxValueIndex
     Dim llngValueIndex
     Dim lstrDebug
     ' Count Form
     llngMaxFieldIndex = Request.Form.Count
    
     ' Let user know if Form Do Not exist
     if llngMaxFieldIndex = 0 Then
      FormData = "Form data is empty."
      Exit function
     End if
    
     ' Begin building a list of all Form
     lstrDebug = "<OL>"
    
     ' Loop through Each Form
     For llngFieldIndex = 1 To llngMaxFieldIndex
      lstrDebug = lstrDebug & "<LI>" & Server.HTMLEncode(Request.Form.Key(llngFieldIndex))
     
      ' Count the values
      llngMaxValueIndex = Request.Form(llngFieldIndex).Count
     
      ' if the Field doesn't have multiple values ...
      if llngMaxValueIndex = 1 Then
       lstrDebug = lstrDebug & " = "
       lstrDebug = lstrDebug & Server.HTMLEncode(Request.Form.Item(llngFieldIndex))
      ' Else Loop through Each value
      Else
       lstrDebug = lstrDebug & "<OL>"
       For llngValueIndex = 1 To llngMaxValueIndex
        lstrDebug = lstrDebug & "<LI>"
        lstrDebug = lstrDebug & Server.HTMLEncode(Request.Form(llngFieldIndex)(llngValueIndex))
        lstrDebug = lstrDebug & "</LI>"
       Next
       lstrDebug = lstrDebug & "</OL>"
      End if
      lstrDebug = lstrDebug & "</LI>"
     Next
     lstrDebug = lstrDebug & "</OL>"
     ' Return the data
     FormData = lstrDebug
    
    End function

%>

<%
'-------------------------------------------------------------------------
'           函数功能:输出所有输入request.querystring值,用于调试!
'-------------------------------------------------------------------------

   Response.Write QueryStringData()
    function QueryStringData()
     Dim llngMaxFieldIndex
     Dim llngFieldIndex
     Dim llngMaxValueIndex
     Dim llngValueIndex
     Dim lstrDebug
     ' Count QueryString
     llngMaxFieldIndex = Request.QueryString.Count
    
     ' Let user know if QueryString Do Not exist
     if llngMaxFieldIndex = 0 Then
      QueryStringData = "Quer