Line 42: <add assembly=”System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B711414E089″ /> Line 43: <add assembly=”System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C2522089″ /> *ERROR *Line 44: <add assembly=”System.Data.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A55115214E089″ /> Line 45: <add assembly=”System.Data.Services, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A51515E089″ /> Line 46: [...]
Error Description: The download of the specified resource has failed. Error Source: msxml3.dll Error Number: -2146697208 Snippet of code : Set xml = Server.CreateObject(“Microsoft.XMLHTTP”) xml.open “POST”, “https://remotehost”, false xml.send vPostData strStatus = xml.Status rv = xml.responseText Set xml = nothing Solution: Error: -2146697208 The download of the specified resource has failed’ means that the remote [...]
Error lookup HUH!!! Provider error ’80004005′ Unspecified error renaming the dsn name to something different , save the file and rename it back worked for me to clear this error. go figure..
<% Dname = Request.ServerVariables(“SERVER_NAME”) Dname = ucase(Dname) if InStr(Dname,”DOMAIN1″) <> 0 then response.redirect “Domain1Dir” elseif InStr(Dname,”DOMAIN2″) <> 0 then response.redirect “Domain2Dir” end if %> or <% Dim host = LCase(Request.ServerVariables(“HTTP_HOST”)) SELECT CASE host Case “www.domain1.com” Response.Redirect(“Default.aspx”) CASE ELSE Response.Redirect(“/domain2Directory/Default.aspx”) End Select %> more info