文章系统图片系统下载系统个人求职企业招聘房产系统展会系统供求系统产品系统商城系统自定义系统后台一览
解决方案
建站知识
归纳一下:ASP.NET程序中常用的三十三种代码
来源:网络作者:网络

5.点击表格行链接另一页

  1.         private void grdCustomer_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
     
  2.         {
     
  3.          //点击表格打开
     
  4.          if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
     
  5.           e.Item.Attributes.Add("onclick","window.open(’Default.aspx?id="  e.Item.Cells[0].Text  "’);");
     
  6.         }   
     

双击表格连接到另一页 

  在itemDataBind事件中

  1.         if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
     
  2.         {
     
  3.          string OrderItemID =e.item.cells[1].Text;
     
  4.          ...
     
  5.          e.item.Attributes.Add("ondblclick", "location.href=’../ShippedGrid.aspx?id="  OrderItemID  "’");
     
  6.         }   
     

双击表格打开新一页

  1.         if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
     
  2.         {
     
  3.          string OrderItemID =e.item.cells[1].Text;
     
  4.          ...
     
  5.          e.item.Attributes.Add("ondblclick", "open(’../ShippedGrid.aspx?id="  OrderItemID  "’)");
     
  6.         } 
     

★特别注意:【?id=】 处不能为 【?id =】

 
 

 

回复:ASP.NET程序中常用的三十三种代码

 
 
     
  1. <asp:HyperLinkColumn Target="_blank" headertext="ID号" DataTextField="id" NavigateUrl="aaa.aspx?id=’
     
  2. <%# DataBinder.Eval(Container.DataItem, "数据字段1")%>’ & name=’<%# DataBinder.Eval(Container.DataItem, "数据字段2")%>’ />
     
7.表格点击改变颜色
  1. if (e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)
     
  2. {
     
  3.  e.Item.Attributes.Add("onclick","this.style.backgroundColor=’#99cc00’;
     
  4.     this.style.color=’buttontext’;this.style.cursor=’default’;");
     

  5.  
复制代码
写在DataGrid的_ItemDataBound里
  1. if (e.Item.ItemType == ListItemType.Item ||e.Item.ItemType == ListItemType.AlternatingItem)
     
  2. {
     
  3. e.Item.Attributes.Add("onmouSEOver","this.style.backgroundColor=’#99cc00’;
     
  4.    this.style.color=’buttontext’;this.style.cursor=’default’;");
     
  5. e.Item.Attributes.Add("onmouSEOut","this.style.backgroundColor=’’;this.style.color=’’;");
     
  6. }
     
复制代码
8.关于日期格式

  日期格式设定
  1. DataFormatString="{0:yyyy-MM-dd}"
     
复制代码
我觉得应该在itembound事件中
  1. e.items.cell["你的列"].text=DateTime.Parse(e.items.cell["你的列"].text.ToString("yyyy-MM-dd"))
     
复制代码
9.获取错误信息并到指定页面

  不要使用Response.Redirect,而应该使用Server.Transfer

  e.g
  1. // in global.asax
     
  2. protected void Application_Error(Object sender, EventArgs e) {
     
  3. if (Server.GetLastError() is HttpUnhandledException)
     
  4. Server.Transfer("MyErrorPage.aspx");
     
复制代码
//其余的非HttpUnhandledException异常交给ASP.NET自己处理就okay了 :)
}

  Redirect会导致post-back的产生从而丢失了错误信息,所以页面导向应该直接在服务器端执行,这样就可以在错误处理页面得到出错信息并进行相应的处理

  10.清空Cookie
  1. Cookie.Expires=[DateTime];
     
  2. Response.Cookies("UserName").Expires = 0
     
复制代码
11.自定义异常处理
  1. //自定义异常处理类
     
  2. using System;
     
  3. using System.Diagnostics;
     

  4.  
  5. namespace MyAppException
     
  6. {
     
  7.  /// <summary>
     
  8.  /// 从系统异常类ApplicationException继承的应用程序异常处理类。
     
  9.  /// 自动将异常内容记录到Windows NT/2000的应用程序日志
     
  10.  /// </summary>
     
  11.  public class AppException:System.ApplicationException
     
  12.  {
     
  13.   public AppException()
     
  14.   {
     
  15.    if (ApplicationConfiguration.EventLogEnabled)LogEvent("出现一个未知错误。");
     
  16.   }
     

  17.  
  18.  public AppException(string message)
     
  19.  {
     
  20.   LogEvent(message);
     
  21.  }
     

  22.  
  23.  public AppException(string message,Exception innerException)
     
  24.  {
     
  25.   LogEvent(message);
     
  26.   if (innerException != null)
     
  27.   {
     
  28.    LogEvent(innerException.Message);
     
  29.   }
     
  30.  }
     

  31.  
  32.  //日志记录类
     
  33.  using System;
     
  34.  using System.Configuration;
     
  35.  using System.Diagnostics;
     
  36.  using System.IO;
     
  37.  using System.Text;
     
  38.  using System.Threading;
     

  39.  
  40.  namespace MyEventLog
     
  41.  {
     
  42.   /// <summary>
     
  43.   /// 事件日志记录类,提供事件日志记录支持
     
  44.   /// <remarks>
     
  45.   /// 定义了4个日志记录方法 (error, warning, info, trace)
     
  46.   /// </remarks>
     
  47.   /// </summary>
     
  48.   public class ApplicationLog
     
  49.   {
     
  50.    /// <summary>
     
  51.    /// 将错误信息记录到Win2000/NT事件日志中
     
  52.    /// <param name="message">需要记录的文本信息</param>
     
  53.    /// </summary>
     
  54.    public static void WriteError(String message)
     
  55.    {
     
  56.     WriteLog(TraceLevel.Error, message);
     
  57.    }
     

  58.  
  59.    /// <summary>
     
  60.    /// 将警告信息记录到Win2000/NT事件日志中
     
  61.    /// <param name="message">需要记录的文本信息</param>
     
  62.    /// </summary>
     
  63.    public static void WriteWarning(String message)
     
  64.    {
     
  65.     WriteLog(TraceLevel.Warning, message);  
     
  66.    }
     

  67.  
  68.    /// <summary>
     
  69.    /// 将提示信息记录到Win2000/NT事件日志中
     
  70.    /// <param name="message">需要记录的文本信息</param>
     
  71.    /// </summary>
     
  72.    public static void WriteInfo(String message)
     
  73.    {
     
  74.     WriteLog(TraceLevel.Info, message);
     
  75.    }
     
  76.    /// <summary>
     
  77.    /// 将跟踪信息记录到Win2000/NT事件日志中
     
  78.    /// <param name="message">需要记录的文本信息</param>
     
  79.    /// </summary>
     
  80.    public static void WriteTrace(String message)
     
  81.    {
     
  82.     WriteLog(TraceLevel.Verbose, message);
     
  83.    }
     

  84.  
  85.    /// <summary>
     
  86.    /// 格式化记录到事件日志的文本信息格式
     
  87.    /// <param name="ex">需要格式化的异常对象</param>
     
  88.    /// <param name="catchInfo">异常信息标题字符串.</param>
     
  89.    /// <retvalue>
     
  90.    /// <para>格式后的异常信息字符串,包括异常内容和跟踪堆栈.</para>
     
  91.    /// </retvalue>
     
  92.    /// </summary>
     
  93.    public static String FormatException(Exception ex, String catchInfo)
     
  94.    {
     
  95.     StringBuilder strBuilder = new StringBuilder();
     
  96.     if (catchInfo != String.Empty)
     
  97.     {
     
  98.      strBuilder.Append(catchInfo).Append("\r\n");
     
  99.     }
     
  100.     strBuilder.Append(ex.Message).Append("\r\n").Append(ex.StackTrace);
     
  101.     return strBuilder.ToString();
     
  102.    }
     

  103.  
  104.    /// <summary>
     
  105.    /// 实际事件日志写入方法
     
  106.    /// <param name="level">要记录信息的级别(error,warning,info,trace).</param>
     
  107.    /// <param name="messageText">要记录的文本.</param>
     
  108.    /// </summary>
     
  109.    private static void WriteLog(TraceLevel level, String messageText)
     
  110.    {
     
  111.     try
     
  112.     {
     
  113.      EventLogEntryType LogEntryType;
     
  114.      switch (level)
     
  115.      {
     
  116.       case TraceLevel.Error:
     
  117.        LogEntryType = EventLogEntryType.Error;
     
  118.        break;
     
  119.       case TraceLevel.Warning:
     
  120.        LogEntryType = EventLogEntryType.Warning;
     
  121.        break;
     
  122.       case TraceLevel.Info:
     
  123.        LogEntryType = EventLogEntryType.Information;
     
  124.        break;
     
  125.       case TraceLevel.Verbose:
     
  126.        LogEntryType = EventLogEntryType.SuccessAudit;
     
  127.        break;
     
  128.       default:
     
  129.        LogEntryType = EventLogEntryType.SuccessAudit;
     
  130.        break;
     
  131.      }
     

  132.  
  133.      EventLog eventLog = new EventLog("Application", ApplicationConfiguration.EventLogMachineName, ApplicationConfiguration.EventLogSourceName );
     
  134.      //写入事件日志
     
  135.      eventLog.WriteEntry(messageText, LogEntryType);
     

  136.  
  137.     }
     
  138.    catch {} //忽略任何异常
     
  139.   }
     
  140.  } //class ApplicationLog
     
  141. }
     
  142. <asp:panel style="overflow-x:scroll;overflow-y:auto;"></asp:panel>
     
复制代码