EasyUI 读数据库图
Posted 一枚水
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EasyUI 读数据库图相关的知识,希望对你有一定的参考价值。
EasyUI 读数据库图
function edit_dg() { //选中一行,获取这一行的主键值 var idImg = $("#tbDeviceClassBrowstab").datagrid(‘getSelected‘).pid; $("#imgId").attr("src", "/ashx/Device/tbDeviceClass.ashx?action=image&pid=" + idImg);
<td style=" padding:5px; " colspan="1" rowspan="8" > <img id="imgId" alt="图片" border=0 align="middle" src="" width="200" height="200"> </img> </td>
后台:
byte[] imagebytes = null; imagebytes = (byte[])dtimg.Rows[0]["DevImage"]; HttpContext.Current.Response.ContentType = "image/jpeg"; HttpContext.Current.Response.BinaryWrite(imagebytes);
以上是关于EasyUI 读数据库图的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段