Initial commit

This commit is contained in:
2021-04-20 07:16:22 +02:00
commit 588032b1dc
1709 changed files with 6660083 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<%@ Language=VBScript%>
<%
Function handleImage()
Dim handler
On Error Resume Next
Set handler = CreateObject("CrystalReports.CrystalImageHandler")
Call handler.HandleImage(Request, Response)
if Err.number <> 0 then
Response.Write Err.Description
Err.Clear
end if
End Function
%>
<% handleImage %>