ASP

.NET: Could not load file or assembly ‘System.Data.Entity, Version

Posted by on February 9, 2009 at 8:12 pm

  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:         [...]

XML: download of the specified resource has failed

Posted by on February 1, 2009 at 2:17 pm

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 [...]

ASP error -80004005: Data source name not found and no default driver specified.

Posted by on December 20, 2008 at 9:26 pm

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..

ASP: connecton strings

Posted by on December 20, 2008 at 9:24 pm

Connection String FAQ

ASP: 301 redirect to a domain to a subfolder

Posted by on December 6, 2008 at 12:49 pm

<% 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