摘要:
1.将MediaInfo.dll放入可执行目录。 2.将官网Demo里的MediaInfoDLL.cs放入项目中。(http://mediainfo.sourceforge.net/en/Download/Windows有官方的示例代码,你也可以到讨论区http://sourceforge.net/ 阅读全文
摘要:
fileupload JS @section scripts{ <script src="~/Content/js/fileupload/vendor/jquery.ui.widget.js"></script> <script src="~/Content/js/fileupload/jquery 阅读全文
摘要:
在开发中遇到的小问题,一个下拉框,一个文本域 ,文本域根据下拉框变化; 由于是一次全部取出的值,下拉框变化不想再去取值; 在后台把值先序列化给前台用 controller: View: <select id="ddlLessonGrade"> <option value="">请选择教案评价等级</ 阅读全文
摘要:
<!--StartFragment --> 主要实现MVC listbox左右移动,搜索左边用户 controller List<userinfo> lstUserInfo = new List<userinfo>(); List<userinfo> lstColLessonUsers = new 阅读全文
摘要:
0-1000 可以有一位有效小数: JS /^1000$|^(?!0\d)\d{1,3}(\.[1-9])?$/ 取图片中的路径(src) C#: Regex reg = new Regex("(?<=img[^>]*src=\")[^\"]+"); 阅读全文
摘要:
命名空间:namespace System.IO.Compression 压缩: //目标文件夹 string fileDirPath = "/Downloads/试题" + userId + "_" + courseId; string downPath = Server.MapPath(file 阅读全文
摘要:
插件:Aspose.Cells 没有安装office插件也能使用; 导出:不能使用ajax异步· /// <summary> /// 导出试题 /// </summary> /// <param name="userId">用户Id</param> /// <param name="courseId 阅读全文
摘要:
转:http://www.cnblogs.com/shuibin/archive/2012/04/19/2457867.html //Union()这个方法将会Union(并集)两个序列(集合)连接成一个新列表(集合) //Intersect ()它将产生两个序列的交集//Except ()它是从一 阅读全文
摘要:
C#中实体集合和实体转换成相应的string、XDocument、XElement public class SimpleXmlConverter { public static string ToXml<T>(IList<T> entities, string rootName = "") whe 阅读全文
摘要:
最常见的XML数据类型有:Element, Attribute,Comment, Text. Element, 指形如<Name>Tom<Name>的节点。它可以包括:Element, Text, Comment, ProcessingInstruction, CDATA, and EntityRe 阅读全文