码迷,mamicode.com
首页 > Web开发 > 详细

HttpContext.Current.Request.Files

时间:2016-01-19 17:19:35      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

HttpFileCollection files = HttpContext.Current.Request.Files;

如果 files返回的结果总是不对

解决:必须为file控件添加Name属性

<script type="text/javascript">
function addFile() {
var str = ‘<div class="R_C_Column"><div class="R_C_Left">请选择图片:</div><div class="R_C_Right"><input type=file name=File runat=server style=width: 300px /></div></div>‘;
document.getElementById(‘FileList‘).insertAdjacentHTML("beforeEnd", str);
//$("#FileList").html(str);
}
</script>
document.getElementById(‘FileList‘).insertAdjacentHTML("beforeEnd", str):

添加HTML内容与文本内容以前用的是innerHTML与innerText方法,最近发现还有insertAdjacentHTML和insertAdjacentText方法,这两个方法更灵活,可以在指定的地方插入html内容和文本内容。
1. beforeBegin: 插入到标签开始前

2. afterBegin:插入到标签开始标记之后

3. beforeEnd:插入到标签结束标记前

4. afterEnd:插入到标签结束标记后

HttpContext.Current.Request.Files

标签:

原文地址:http://www.cnblogs.com/zhubenxi/p/5142555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!