본문 바로가기

ASP

ABC 업로드 출력함수


'******************************************************************
'* # FUNCTION NAME : Request 출력 함수
'* # FUNCTION CONT. : Request 값을 출력해서 확인해 보는 함수
'* # Made By 임형섭 2007-07-12
'* # 사용법 : Call ViewRequestData  
'******************************************************************
Sub ViewRequestData_ABC(Object)

 For Each theItem In Object
  For Each theSubitem In Object(theItem)
   Response.Write theItem & " = " & Server.HTMLEncode( Request.Form(theSubitem) ) & "<br>"
  Next
 Next

End Sub