在图像控件中显示图像

时间:2011-11-08 10:59:39

标签: asp.net sql

我需要从数据库中检索数据信息并将图像绑定到图像控件而不是datagrid或gridview或datalist。

这里使用的代码不能正常工作

con.Open()
Dim mycommand As New SqlCommand("SELECT * FROM registration where UserName = @ username", con)
mycommand.Parameters.AddWithValue("@UserName", Session("UserName").ToString())
imgUser.ImageUrl = "UserPics/(image1);
con.close()

<asp:Image ID="imgUser" runat="server" Width="340px" Height="150px" ImageUrl="UserPics/<%# Databinder.Eval(container.DataItem, "imagel")  %>.jpg"/>

1 个答案:

答案 0 :(得分:0)

@ username不应该有空格=&gt;
- "SELECT * FROM registration where UserName = @username",

;应该是" =&gt;
- imgUser.ImageUrl = "UserPics/(image1)"

虽然我不确定那条线实际上是什么......