The trick is to not use "New Web Site" from the File menu. You must create a project first then add your website as a sub directory of your project.
1) Create a Project (File->New Project):



string text, body, lang; lang = context.Request.QueryString["lang"]; text = HttpUtility.UrlDecode(context.Request.QueryString["text"]); body = "" + "" + " "; WebClient client = new WebClient(); client.Headers.Add("Content-Type", "text/xml"); byte[] buffer = Encoding.UTF8.GetBytes(body); byte[] response = client.UploadData("https://www.google.com/tbproxy/spell?lang=" + lang, "POST", buffer); string result = Encoding.UTF8.GetString(response); context.Response.ContentType = "text/xml"; context.Response.Write(result);" + text + " " + "