http://www.cnblogs.com/William_Fire/archive/2004/06/22/17682.aspx  摸态窗口
http://blog.joycode.com/mmkk/archive/2004/05/20/22038.aspx  摸态窗口
http://www.cnblogs.com/voodgen/archive/2004/12/13/76277.html  DataGrid技巧大集合(转载)
http://dev.csdn.net/develop/article/16/16311.shtm   DataSet导出CSV格式(ASP.NET,C#) 
http://dev.csdn.net/develop/article/16/article/18/18043.shtm    用脚本解决ASP.NET页面刷新问题
http://dev.csdn.net/develop/article/24/24441.shtm  XP 风格的可拖动列、可排序、可改变宽度DataGrid

///
/// 清空浏览器客户端的缓存
///
public static void ClearClientPageCache()
{
HttpContext.Current.Response.Buffer=true;
HttpContext.Current.Response.Expires = 0;
HttpContext.Current.Response.ExpiresAbsolute=DateTime.Now.AddDays(-1);
HttpContext.Current.Response.AddHeader("pragma","no-cache");
HttpContext.Current.Response.AddHeader("cache-control","private");
HttpContext.Current.Response.CacheControl="no-cache";
}
/////////////////////////////////////////////////////////////
http://www.cnblogs.com/smilnet/archive/2004/07/17/25150.aspx  用javascript实现DataGrid CheckBox类似于HotMail 全选

相关文章:

  • 2021-10-30
  • 2021-11-16
  • 2021-07-08
  • 2021-06-20
  • 2022-01-26
  • 2021-12-24
  • 2021-09-17
  • 2021-10-23
猜你喜欢
  • 2022-01-31
  • 2021-05-20
  • 2021-09-21
  • 2022-02-02
  • 2022-12-23
  • 2021-06-10
  • 2021-06-21
相关资源
相似解决方案