开发导出excel,首先需要添加项目引用。Microsoft.CSharp这个是应用dynamic的前提。在代码页,需要添加引用using System.Runtime.InteropServices.Automation;以下是我具体制作业务导出的其中一个功能的代码,供大家参考。private I...
分类:
Web程序 时间:
2014-08-29 12:58:57
阅读次数:
237
/// /// 保存文件 /// 涂聚文 /// 2014-08-29 /// Geovin Du /// /// /// public static void DataGrid...
[csharp]view plaincopy//相较上一版本改进//1.修改Bug//当设置每月一次频率时,设置的Day日期如果为31,30,29,在有些年份的有些月份会抛出异常,因为有些月份是没有31天的,改正之后,//如果设置了31天,则只有有31天的月份会执行。//2.修正一年中某天的日期较验...
分类:
其他好文 时间:
2014-08-28 09:35:39
阅读次数:
322
1.提供视图模型对象你能把一个对象作为View方法的参数传递给视图. [csharp] view plaincopyprint?publicViewResultIndex(){DateTimedate=DateTime.Now;returnView(date);}然后我们在视图中使用Razor的Mo...
分类:
Web程序 时间:
2014-08-27 23:19:38
阅读次数:
315
Unity3d---> IEnumerator2013-04-18 10:242162人阅读评论(0)收藏举报Unity3dc#[csharp]view plaincopyusingUnityEngine;usingSystem.Collections;publicclassTest:MonoBeh...
分类:
其他好文 时间:
2014-08-27 21:51:08
阅读次数:
324
利用JQuery的$.ajax()可以很方便的调用asp.net的后台方法。[WebMethod] 命名空间1、无参数的方法调用, 注意:1.方法一定要静态方法,而且要有[WebMethod]的声明后台:[csharp]view plaincopyusingSystem.Web.Script.Ser...
分类:
Web程序 时间:
2014-08-27 10:37:07
阅读次数:
238
1.[csharp]view plaincopyusingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;u...
C#的提交表单方式主要有两种WebClient与HttpWebRequest,这里先介绍一种WebClient,转送门:http://msdn.microsoft.com/zh-cn/library/system.net.webclient(v=VS.80).aspx[csharp]view pla...
分类:
Web程序 时间:
2014-08-25 11:37:04
阅读次数:
239
1.创建空间参考[csharp] view plaincopyprint?//////根据prj文件创建空间参考//////空间参照文件///publicstaticISpatialReferenceCreateSpatialReference(stringstrProFile){ISpatialR...
分类:
其他好文 时间:
2014-08-25 04:28:33
阅读次数:
399
[CSharp]程序集:mscorlib命名空间:System.Collections.GenericDictionary的描述1、从一组键(Key)到一组值(Value)的映射,每一个添加项都是由一个值及其相关连的键组成2、任何键都必须是唯一的3、Key和Value可以是任何类型(string,i...
分类:
其他好文 时间:
2014-08-21 19:02:24
阅读次数:
255