如何在一个页面中批量显示数据库中的图片?
数据库中存放图片的表有imgid和imgdata两个属性,表中存放有很多图片,我想在一个页面中显示几张图片,像相册一样。现在我只能显示一张图片。显示代码如下:protec...
数据库中存放图片的表有imgid 和 imgdata两个属性,表中存放有很多图片,我想在一个页面中显示几张图片,像相册一样。现在我只能显示一张图片。显示代码如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
SqlConnection conn = new SqlConnection();
conn.ConnectionString = "Data Source=.;Initial Catalog=student;Persist Security Info=True;User ID=sa;Password=sa";
int i;
string strSql = "select imgdata from image where imgid=5";//这里假设获取id为5的图片
SqlCommand cmd = new SqlCommand(strSql, conn);
conn.Open();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
//读取
Response.ContentType = "application/octet-stream";
Response.BinaryWrite((Byte[])reader["imgdata"]);
Response.End();
reader.Close();
}
}
}
如果在一个页面中放几个image控件显示几张图片要怎么实现啊?
我用过循环读取,但是显示页面只显示第一张图片,我试用ImageUrl="~/showph.aspx?imgid=3"这样没有用,ImageUrl要怎么设才能显示我想要显示的具体某张图片?
各位高手指点一下啊,小弟刚学ASP.NET
我试过用gridview 显示不了图片,只能显示ID 展开
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
SqlConnection conn = new SqlConnection();
conn.ConnectionString = "Data Source=.;Initial Catalog=student;Persist Security Info=True;User ID=sa;Password=sa";
int i;
string strSql = "select imgdata from image where imgid=5";//这里假设获取id为5的图片
SqlCommand cmd = new SqlCommand(strSql, conn);
conn.Open();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
//读取
Response.ContentType = "application/octet-stream";
Response.BinaryWrite((Byte[])reader["imgdata"]);
Response.End();
reader.Close();
}
}
}
如果在一个页面中放几个image控件显示几张图片要怎么实现啊?
我用过循环读取,但是显示页面只显示第一张图片,我试用ImageUrl="~/showph.aspx?imgid=3"这样没有用,ImageUrl要怎么设才能显示我想要显示的具体某张图片?
各位高手指点一下啊,小弟刚学ASP.NET
我试过用gridview 显示不了图片,只能显示ID 展开
2个回答
展开全部
可以用GridView控件就很容易实现把
图片放到数据库中不合适~把图片的路径放到数据库里.
然后把在GridView控件绑定路径
图片放到数据库中不合适~把图片的路径放到数据库里.
然后把在GridView控件绑定路径
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ImageUrl="~/showph.aspx?imgid=X" //X表示imgid的具体值
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
SqlConnection conn = new SqlConnection();
conn.ConnectionString = "Data Source=.;Initial Catalog=student;Persist Security Info=True;User ID=sa;Password=sa";
string strSql = "select imgdata from image where imgid=" + Request.QueryString["imgid"];//这里获取图片
SqlCommand cmd = new SqlCommand(strSql, conn);
conn.Open();
Object oImg = cmd.ExecuteScalar();
//读取
Response.ContentType = "image/*";
Response.BinaryWrite((Byte[])oImg);
Response.End();
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
SqlConnection conn = new SqlConnection();
conn.ConnectionString = "Data Source=.;Initial Catalog=student;Persist Security Info=True;User ID=sa;Password=sa";
string strSql = "select imgdata from image where imgid=" + Request.QueryString["imgid"];//这里获取图片
SqlCommand cmd = new SqlCommand(strSql, conn);
conn.Open();
Object oImg = cmd.ExecuteScalar();
//读取
Response.ContentType = "image/*";
Response.BinaryWrite((Byte[])oImg);
Response.End();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询