Hasta pasado el tiempo que imagino que sea el tiempo de session no me deja borrarla. Esto es un problema.... pensé que quizas fuera por que en el archivo aspx que redimensiona las imagenes faltaba poner algun elemento =Nothing, pero si hago esto la imagen no aparece....
bueno aqui va el codigo...a ver si alguien me puede decir algo...
Código:
Esto va junto con una libreria dll, habria alguna manera de mirar dentro de esa libreria? y poder buscar el fallo.... Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim ThumbnailComponent as Thumbnail
Dim ImgSrc as String = Request.Params("ImgSrc")
Dim Width as integer = CInt(Request.Params("Width"))
Dim Height as integer = CInt(Request.Params("Height"))
Dim Quality as integer = CInt(Request.Params("Quality"))
ThumbnailComponent = New Thumbnail()
ThumbnailComponent.SetImgSrc(ImgSrc)
if Quality<>0 then
ThumbnailComponent.SetQuality(Quality)
end if
if Height<>0 then
ThumbnailComponent.SetHeight(Height)
end if
if Width<>0 then
ThumbnailComponent.SetWidth(Width)
end if
ThumbnailComponent.Draw()
End Sub

