我无法在注册时显示用户上传的个人资料照片。 图像的路径存储在数据库中,图像存储在目录/ data /中。 imageURL不适合我。 代码是:(。cs)
protected void Page_Load(object sender, EventArgs e)
{
string us = (string)Session["userid"];
if (!Page.IsPostBack)
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["cc"].ConnectionString);
SqlCommand cmd = new SqlCommand("select imgpath from reg where userid='" + us + "'", con);
con.Open();
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
Image1.ImageUrl = dr[0].ToString();
}
con.Close();
}
}