摘要:
using System; using System.Collections.Generic; using System.Linq; namespace LinqTest { class Program { static void Main() { List listProduct = new List { ... 阅读全文
摘要:
检索文件扩展名。 GetExtension 检索文件的完全限定路径。 GetFullPath 检索路径中的文件名和扩展名。 GetFileName 只检索路径中的文件名。 GetFileNameWithoutExtension 只检索路径中的目录名。 GetDirectoryName 更改文件扩展名 阅读全文
摘要:
注意: 1.return File(dirAbsolutePath, contentType); 中contentType不能是"application/octet-stream",需要获取文件mimetype后,指定contentType 2.浏览器支持打开的文件格式有限,例如:txt、html、 阅读全文
摘要:
var channels = entity.Channel.Split('/'); for (var i = 0; i < channels.Length; i++) { PropertyInfo pi = typeof(BPM_EnterpriseOrgActiv... 阅读全文
摘要:
public class OrderInfo { public OrderResult GetOrderInfoByOrderNum(List orderNumList) { OrderResult result = new OrderResult(); OmcOrderSearchClient order... 阅读全文
摘要:
使用 jQuery ,写法如下: 1.$("#myEle", window.parent.document).html(html); 另外还有一种实现方式,代码如下: 2.parent.$("#myEle").html(html); 阅读全文
摘要:
http://framework7.taobao.org/ 阅读全文
摘要:
PropertyInfo[] properties = typeof(BPM_ContractApproval_Purchase).GetProperties(); foreach (var property in properties) { string text = Convert.To... 阅读全文
摘要:
Moment.js http://momentjs.cn/ 阅读全文
摘要:
window.showMsg = function (msg) { //显示悬浮窗 $("#autoCloseModal").modal("show") //设置文本内容 $("#autoCloseModal #autoCloseModalBody").html("") $("#autoCloseModal #autoCloseModalBody").ht... 阅读全文