I m有一台可检索服务器档案系统的图像的手稿。 我需要在客户(浏览器)旁收集这些图像。 如果是这样的话,则采取下列法规:
context.Response.Clear()
context.Response.ClearHeaders()
context.Response.ClearContent()
Dim ImageCacheExpiry = ConfigurationManager.AppSettings("ImageCacheExpiryDuration")
context.Response.Cache.SetCacheability(HttpCacheability.Private)
context.Response.Cache.SetExpires(DateTime.Now.AddHours(ImageCacheExpiry))
context.Response.Cache.VaryByParams(DisplayImage.FileName) = True
context.Response.Cache.SetLastModified(DisplayImage.DateModified)
context.Response.AddHeader("Content-Disposition", "inline; filename=" & DisplayImage.FileName)
context.Response.ContentType = DisplayImage.MimeType
context.Response.BinaryWrite(DisplayImage.ImageBytes)
context.Response.Flush()
context.Response.Close()
context.Response.End()
DisplayImage is the object that is having all the data of images like
DisplayImage.Filename, DisplayImage.FilePathandName, DisplayImage.MimeType etc
...... 当两条之间开关时,会把它从海滩上取走,但当一只打上浏览器时,它会再次进入服务器上的档案系统...... 请告诉我,如何在客户方面收集这些图像。
P.S.:在我提出申请的所有页上都标注。
预祝......。