在编辑模式下重新启动应用程序之前,不会显示新上载的图片

时间:2013-10-10 12:53:08

标签: asp.net-mvc-4 inline inline-editing

我有一个用MVC 4编写的项目。 我使用kendo网格作为我的部分视图之一 下面是我的网格代码的一部分

 columns.Bound(p => p.BrandID).Groupable(false).Title(MyResources.LabelBrandID).HeaderHtmlAttributes(new { style = "text-align:" + MyResources.HeaderDirection });

 columns.Bound(p => p.BrandNameE).Title(MyResources.LabelBrandNameE).HeaderHtmlAttributes(new { style = "text-align:" + MyResources.HeaderDirection });
 columns.Bound(p => p.BrandNameA).Title(MyResources.LabelBrandNameA).HeaderHtmlAttributes(new { style = "text-align:" + MyResources.HeaderDirection });
 columns.Bound(p => p.BrandID).Width(120).Title(" ").Filterable(false).Sortable(false)
         .ClientTemplate(@"<img onError='BrandImgNotFound(this);' src='" + Url.Content("~/Images/Brands/") + "#=data.BrandID#.jpg'  />");        
 columns.Template(@<text></text>).Title(" ").ClientTemplate("<input type=file name='files' onchange='dataBound(this.value)' />").Width(280).Hidden(true);                 
 columns.Command(command => { command.Edit().Text(MyResources.EditText).CancelText(MyResources.CancelText).UpdateText(MyResources.UpdateText); command.Destroy().Text(MyResources.Delete); });

我的问题是当你在内联编辑中上传图片并使用File.Copy将其存储在文件夹中时, 在重新启动应用程序之前,编辑模式下的新图片不会出现。 虽然新上传的图片在文件夹中可用。 任何帮助表示赞赏。

0 个答案:

没有答案