dove sbaglio a recuperare il valore appeso ad un url querysting nel codice di seguito?
![]()
<% @Language="VBScript" %>
<%
Option Explicit
'On Error Resume Next
%>
<%
img = Request.Querystring("img")
'// HOW TO USE THIS CODE:
Dim oAspImg
Set oAspImg = New cAspImage
With oAspImg
.ReadImage(Server.MapPath("" & img & ""))
Response.Write "ImageSize: " & .ImageSize & "
"
Response.Write "Date Created: " & .DateCreated & "
"
Response.Write "Date Last Modified: " & .DateLastModified & "
"
Response.Write "ColorDepth: " & .ColorDepth & "
"
Response.Write "Width: " & .Width & "
"
Response.Write "Height: " & .Height & "
"
Response.Write "ImageType: " & .ImageType & "
"
Response.Write "Error Message: " & .ErrorMessage & "
"
End With
Set oAspImg = Nothing
%>

Rispondi quotando
ora funziona!!! 