码迷,mamicode.com
首页 > 其他好文 > 详细

获取所有querystring变量名

时间:2017-07-13 10:38:40      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:tostring   protect   prot   obj   object   query   color   font   str   

原文发布时间为:2009-12-04 —— 来源于本人的百度文章 [由搬家工具导入]

protected void Page_Load(object sender, EventArgs e)
    {
            for (int i = 0; i < Request.QueryString.Keys.Count; i++)
            {
                Response.Write(Request.QueryString.Keys[i].ToString() + ",");
            }
    }

获取所有querystring变量名

标签:tostring   protect   prot   obj   object   query   color   font   str   

原文地址:http://www.cnblogs.com/handboy/p/7158333.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!