本文介绍了如何从数据库将图像加载到kendo ui网格中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的数据库中有一个名为Image的字段.我想直接从数据库中加载图像.我给了像
这样的模板

I have a field named Image in my database.i want to load the image directly from the database.I gave the template like

{ field: "Image", title: "image", template:"<img src ='#= Image #'/>"},


推荐答案

string filename = Path.GetFileName(LogoUploder.PostedFile.FileName);

            if (filename == "")
            {
                filename = "NOIMAGE.jpg";
            }
            else
            {
                LogoUploder.SaveAs(Server.MapPath(&quot;LOGOS/&quot; + filename));
            }


这篇关于如何从数据库将图像加载到kendo ui网格中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 20:53