
























Dim img As String = Server.MapPath("images/errIoc.gif")
Dim frd As New FileStream(img, FileMode.Open)
Dim imgbyte(frd.Length) As Byte
frd.Read(imgbyte, 0, frd.Length)
frd.Close()
frd = Nothing
Response.ClearContent()
Response.ContentType = "image/Gif"
Response.BinaryWrite(imgbyte)
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。