Critical fix in WebContext

main
Inga 🏳‍🌈 14 years ago
parent 9319d404d1
commit 64333b8d25
  1. 2
      IISMainHandler/WebContext.cs

@ -42,7 +42,7 @@ namespace FLocal.IISHandler {
return new XElement("get", return new XElement("get",
from i in Enumerable.Range(0, this.httprequest.QueryString.Count) from i in Enumerable.Range(0, this.httprequest.QueryString.Count)
select new XElement("param", select new XElement("param",
new XAttribute("name", this.httprequest.QueryString.GetKey(i)), new XAttribute("name", this.httprequest.QueryString.GetKey(i).ToString()),
this.httprequest.QueryString[i] this.httprequest.QueryString[i]
) )
); );

Loading…
Cancel
Save