ASP.NET中用gridview显示图片 20
1.从dropdownlist里获得产品分类名(有自行车类,汽车类,摩托车类),是绑定了数据库控件的(这个功能已实现)2.添加gridview控件,在这里面要显示1中所选...
1.从dropdownlist里获得产品分类名(有自行车类,汽车类,摩托车类),是绑定了数据库控件的(这个功能已实现)
2.添加gridview控件,在这里面要显示 1 中所选的分类所有图片(小弟写了个存储过程,在数据库查询中能实现要的效果),就是要在gridview中显示图片,要调用存储过程。
小弟卡了一个礼拜了,跪求高手指点迷津~~
create proc productphotoProc
@name nvarchar(50)
as
select LargePhoto from ProductPhoto
where ProductPhotoID=(
select ProductPhotoID from ProductProductPhoto
where ProductID=(
select ProductID from Product
where ProductSubcategoryID=(
select ProductSubcategoryID from ProductSubCategory
where ProductCategoryID=(
select ProductCategoryID from ProductCategory
where [Name]=@name))) )
exec productphotoProc @name='Components'
这是存储过程,能够运行,并找到相应图片
图片是二进制的~~ 展开
2.添加gridview控件,在这里面要显示 1 中所选的分类所有图片(小弟写了个存储过程,在数据库查询中能实现要的效果),就是要在gridview中显示图片,要调用存储过程。
小弟卡了一个礼拜了,跪求高手指点迷津~~
create proc productphotoProc
@name nvarchar(50)
as
select LargePhoto from ProductPhoto
where ProductPhotoID=(
select ProductPhotoID from ProductProductPhoto
where ProductID=(
select ProductID from Product
where ProductSubcategoryID=(
select ProductSubcategoryID from ProductSubCategory
where ProductCategoryID=(
select ProductCategoryID from ProductCategory
where [Name]=@name))) )
exec productphotoProc @name='Components'
这是存储过程,能够运行,并找到相应图片
图片是二进制的~~ 展开
3个回答
展开全部
数据库中存储图片的相对路径 比如说你的网站根目录下有一个Images文件夹,里面有1.jpg等图片,数据库中就存放它的相对路径,即Images/1.jpg即可,在前台放置一个Image控件,绑定它的ImageUrl即可,可以写为<%DataBinde.Eval(Container.DataItem,"url")%> url为你的数据库里存放路径的字段名,比如说ImageUrl.
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把数据库的图片路径取出来,在gridview中放个img,把路径绑定上去,就是啦
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询