我用它来读取字节
string path = HttpContext.Current.Server.MapPath(Image1.ImageUrl);
prsn.photo = File.ReadAllBytes(path);
但是如何从
<asp:Image ID="Image1" ImageUrl="~/Site/images/agent.png" Height="80px" Width="60px" runat="server" />
当我获取 image1.uri 时,我加载了一个图像,然后它返回路径
"~/getCaseImg.aspx?caseid=1"
但现在它没有从这个路径读取字节数组
string path = HttpContext.Current.Server.MapPath(Image1.ImageUrl);
prsn.photo = File.ReadAllBytes(path);