我正在创建一个小型应用程序,我正在从数据库中读取图像,将图像存储在文件中,然后将 Image Control ImageURL属性设置为创建的文件
代码非常简单
Dim m_Bytes As Byte() = DirectCast(command.ExecuteScalar, Byte())
Dim strfn As String = "D:\" + Convert.ToString(DateTime.Now.ToFileTime()) + ".jpeg"
Dim fs As New FileStream(strfn, FileMode.CreateNew, FileAccess.Write)
fs.Write(m_Bytes, 0, m_Bytes.Length)
fs.Flush()
fs.Close()
Image1.ImageUrl = strfn
图像在该位置正确创建,但图像控件不呈现图像。我检查了页面的来源,图像控件指向
<img id="Image1" src="D:\129901061171254403.jpeg" />
src 指向正确的位置...
提前致谢....