摘要: 先看如下代码: string strParam = Request.Params["param"]; if ( strParam== null ) { strParam= ""; } string strParam= Request.Params["param"] == null ? "": Request.Params["param"]; 你发现,尽管实现的同一个功能,但第二段代... 阅读全文
posted @ 2015-03-22 11:18 359444066 阅读(6796) 评论(1) 推荐(1) 编辑