博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MVC利用BootstrapFileInput 插件上传图片
阅读量:4942 次
发布时间:2019-06-11

本文共 1227 字,大约阅读时间需要 4 分钟。

话不多说。

html代码:一个from包裹的html

<div class="form-group" id="uploadForm">

<div class="h4">头像预览</div>
<div class="fileinput fileinput-new" data-provides="fileinput" id="exampleInputUpload">
<div class="fileinput-new thumbnail" style="width: 200px;height: auto;max-height:150px;">
@if (!string.IsNullOrEmpty(Model.User.Image))
{
<img id='picImg' style="width: 100%;height: auto;max-height: 140px;" src="@Model.User.Image" alt="" />
}
</div>
<div id="im" class="fileinput-preview fileinput-exists thumbnail" style="max-width: 200px; max-height: 150px;"></div>
<div>
<span class="btn btn-primary btn-file">
<span class="fileinput-new">选择文件</span>
<span class="fileinput-exists">换一张</span>
<input type="file" name="pic1" id="picID" accept="image/gif,image/jpeg,image/x-png" />
</span>
<a href="javascript:;" class="btn btn-warning fileinput-exists" data-dismiss="fileinput">移除</a>
</div>
</div>
</div>
<p>头像文件仅支持gif、png、jpg文件</p>
<button type="button" id="uploadSubmit" class="btnZHBlue mTop10">提交</button>

 

后台代码:

public ActionResult Update(int id)//上传头像

{
string all = Request["image"].ToString();//这是base64编码,直接保存数据库。
if (all == null)
{
return Json(false);
}
else
{
return Json(true);
}
}

转载于:https://www.cnblogs.com/zchzt/p/8466935.html

你可能感兴趣的文章
Still unable to dial persistent://blog.csdn.net:80 after 3 attempts
查看>>
HTML超文本标记语言(九)——表单输入类型
查看>>
基于busybox制作mini2440根文件系统及使用nfs挂载
查看>>
信道容量及信道编码原理学习
查看>>
浅谈独立特征(independent features)、潜在特征(underlying features)提取、以及它们在网络安全中的应用...
查看>>
从随机过程的熵率和马尔科夫稳态过程引出的一些思考 - 人生逃不过一场马尔科夫稳态...
查看>>
《A First Course in Abstract Algebra with Applications》-chaper1-数论-关于素数
查看>>
ORA-3136
查看>>
算法笔记_145:拓扑排序的应用(Java)
查看>>
JS获取农历日期
查看>>
PHP中的HTTP协议
查看>>
CSS给文字描边实现发光文字
查看>>
Java WebService入门实例
查看>>
css样式之补充
查看>>
结构与联合
查看>>
关于JS历史
查看>>
软件架构师工作流程
查看>>
将txt文本转换为excel格式
查看>>
BUPT复试专题—众数(2014)
查看>>
css-sprite切割图片(加快网页加载速度)
查看>>