摘要: $(function () { $(":checkbox").click(function () { //设置当前选中checkbox的状态为checked $(this).attr("checked", true); $(this).siblings().attr("checked", false 阅读全文
posted @ 2019-01-28 08:29 Code麒麟 阅读(288) 评论(0) 推荐(0)
摘要: 但是在服务器上安装.net4.6后仍然提示编译出错。 解决方法:打开解决方案NuGet包管理器,卸载一个叫“Microsoft.CodeDom.Providers.DotNetCompilerPlatform”的包,之后重新编译网站,发现Bin目录下没有roslyn文件夹了! 阅读全文
posted @ 2019-01-25 10:37 Code麒麟 阅读(123) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>修改网红信息</ 阅读全文
posted @ 2019-01-20 11:56 Code麒麟 阅读(487) 评论(3) 推荐(0)
摘要: public ActionResult Index(IEnumerable files) { foreach (var file in files) { if (file.ContentLength > 0) { ... 阅读全文
posted @ 2019-01-20 10:01 Code麒麟 阅读(132) 评论(0) 推荐(0)