摘要: 避免不必要的执行操作 关闭不必要的Session状态 注意使用Server Control 不必要时可以不使用Server Control 不必要时可以关闭ViewState 不要用Exception控制程序流程 try { result = 100 / num; } catch (Exception e) { result = 0; } if (num != 0)... 阅读全文
posted @ 2008-08-09 11:08 快乐就好 阅读(430) 评论(0) 推荐(0)