行谦
cshtml 无法对 null 引用执行运行时绑定 这个怎么办
当时我就吓傻啦
为null的时候给他设成""的/斜眼笑
行谦
cshtml 中Model 不为空,但其中有的项的值为null,导致 无法对 null 引用执行运行时绑定 这个怎么办
圣观吉祥
http://m.jb51.net/books/464016.html
行谦
List<Model> list = dal.select();
return View(list);
在cshtml 页面这么 获取 返回的list
【路人】旭光~
用IO流下载文件直接报错
这个是什么问题啊
//输出下载
Response.Clear();
Response.Buffer = true;
string unifyName = hRecord["UserName2"].ToString() + ".docx"; //新名称
if (Request.UserAgent.Contains("MSIE"))//ie设置文件编码,防止乱码
Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(unifyName, System.Text.Encoding.UTF8));
else
Response.AppendHeader("Content-Disposition", "attachment;filename=" + unifyName);
Response.ContentType = "application/ms-word";
Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
Response.Charset = "utf-8";
FileInfo info = new FileInfo(fileNameWord);
long fileSize = info.Length;
Response.AddHeader("Content-Length", fileSize.ToString());
Response.TransmitFile(fileNameWord, 0, fileSize);
Response.Flush();
这个是我下载的代码 【大腕】Microsoft
不用这个
用封装好的那个 webclient