NPOI导出EXCEL C#(winform)版
/// <summary> /// DataTable导出到Excel文件 /// </summary> /// <param name="dtSource">源DataTable</param> /// <param name="strHeaderText">表头文本</param> /// <param name="strFileName">保存位置</param> public static void DataTableToExcel(DataTable dtSource, string strHeaderText, string strFileName) { using (MemoryStream ms = DataTableToExcel(dtSource...
[收藏]iOS开发快速入门教程
课程简介: 第一阶段:开发平台介绍、C语言强化。mac os系统介绍,c语言基础及强化,c语言数组及指针详解,objective-c语法基础,objective-c面向对象开发,iOS平台开发概述、xcode 开发工具基本使用,xcode工具使用技巧。 第二阶段:Objective-C语言、iOS开发基础知识。ObjectiveC强化、Foundation框架加强,CocaTouch框架概述,MVC设计模式,简单iPhone应用开发,interface builder使用,基本视图View及Controller应用;View及Controller的交互;委托delagate应用;常用控件特性及应用;表格控件TableView使用,...
通过web.config设置网站默认页
<configuration> <system.web> <compilation debug="true" targetFramework="4.0" /> </system.web> <appSettings> </appSettings> <system.webServer> <defaultDocument> <files> <clear /> <add value="index.aspx" /> </files> </defaultDocument> </system.webServer> </configuration>