我一直在尝试使用jQuery插件
Colorbox通过ashx文件显示我在数据库中的图像.不幸的是,它只是在页面顶部吐出一堆胡言乱语而没有图像.可以这样做吗?这是我到目前为止:
$(document).ready ( function () { $("a[rel='cbImg']").colorBox(); } ); ... <a rel="cbImg" href="HuntImage.ashx?id=15">Click to see image</a>
更新:
context.Response.ContentType = "image/bmp"; context.Response.BinaryWrite(ba);