aspxASPX 网页URL传参数 6月 14, 2010 - by 欧阳逍遥 - Leave a Comment 答1: System.Collections.Specialized.NameValueCollection col = Request.QueryString; string strID = col[“ID”]; 答2: 直接Request.QueryString[“ID”]; 答3: Request.Params[“ID”];