摘要:
一:反射的定义 审查元数据并收集关于它的类型信息的能力。元数据(编译以后的最基本数据单元)就是一大堆的表,当编译程序集或者模块时,编译器会创建一个类定义表,一个字段定义表,和一个方法定义表等。 System.reflection命名空间包含的几个类,允许你反射(解析)这些元数据表的代码 System 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Threading; using System.Net; names 阅读全文
摘要:
一、导出数据格式 二、实现代码 /// <summary> /// 导出经费统计excel表格 /// </summary> /// <param name="taskid"></param> /// <param name="taskname"></param> /// <returns></re 阅读全文
摘要:
using System; namespace EMC.Core { /// <summary> /// 金额转换为大写 /// </summary> public class EcanRMB { /// <summary> /// 转换人民币大小金额 /// </summary> /// <par 阅读全文
摘要:
public FileResult ExportExcel() { var sbHtml = new StringBuilder(); sbHtml.Append("<table border='1' cellspacing='0' cellpadding='0'>"); sbHtml.Append 阅读全文
摘要:
修改表名 格式:sp_rename tablename,newtablename sp_rename tablename,newtablename 修改字段名 格式:sp_rename 'tablename.colname',newcolname,'column' sp_rename 'tablen 阅读全文
摘要:
public ActionResult DownloadFile(string id) { var fileinfo = CommonAnnexService.Get(id); if (fileinfo.StatusValue... 阅读全文
摘要:
该上传功能主要用到html5新属性FormData,通过XMLHttpRequest对象send到服务器,支持文件多选和多次选择、文件去重、移除已选文件等1、html代码 附件上传 ... 阅读全文