10 2011 档案
摘要:come from:http://www.cnblogs.com/emanlee/archive/2008/01/20/1046022.html日期转化一为了达到不同的显示效果有时,我们需要对时间进行转化,默认格式为:2007-01-0314:33:34,要转化为其他格式,要用到DateTime.ToString的方法(String,IFormatProvider),如下所示:usingSystem;usingSystem.Globalization;Stringformat="D";DateTimedate=DataTime,Now;Response.Write(date
阅读全文
摘要:在把数据导出到Excel中时发生这种错误,网上搜出2种解决方法:1.修改web.config(不推荐)<pages enableEventValidation ="false" ></pages>2.直接在导出Execl的页面修改<%@ Page Language="C#" EnableEventValidation = "false" AutoEventWireup="true" CodeFile="ExportGridView.aspx.cs" Inherits
阅读全文