diff --git a/IISMainHandler/WebContext.cs b/IISMainHandler/WebContext.cs index 354632e..ba4ea91 100644 --- a/IISMainHandler/WebContext.cs +++ b/IISMainHandler/WebContext.cs @@ -42,7 +42,7 @@ namespace FLocal.IISHandler { return new XElement("get", from i in Enumerable.Range(0, this.httprequest.QueryString.Count) 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] ) );