strcom = "select zhuti,neirong,yonghuming from posts where yonghuming like 'sky%789' order by shijian";我用Response.Redirect("查看搜索结果.aspx?strcom=" + strcom);
传参数 strcom 到第2个页面用   NameValueCollection coll = Request.QueryString;
   string [] strcom = coll.GetValues(0);接受后
strcom [0] = "elect zhuti,neirong,yonghuming from posts where yonghuming like 'skyx9' order by shijian";'sky%789' 变成了'skyx9'  请问这是为什么,怎么解决??