HI All, I am getting the error message in my application as "Microsoft VBScript runtime error '800a000d' Type mismatch "objRequest.Address1 "". I am typing few lines of code where i am getting error message, Dim objRequest,objResponse Set objRequest = Server.CreateObject("HomeValueBotClient.ValueRequest") objRequest.UserReference = "19205" objRequest.Address1 = Request.QueryString("address") objRequest.City = Request.QueryString("city") objRequest.State = Request.QueryString("state") objRequest.Zip = Request.QueryString("zip") Can anyone help me in solving this problem. Thanks, Janvi
Without being able to see your data, I am guessing you have some illegal characters in the "address" string probably spaces which will be returned as %20 and cause your error. you will need to pull the value into a variable such as temp = Request.QueryString("address") and then use the replace function to replace illegal values ( replace "%20" with " ") for example.