Hello,
I am trying to debug a site that is getting a 500 internal server error when I try to use MySQL ODBC driver, it fails with this error:
80004005|[Microsoft][ODBC_Driver_Manager]_Data_source_name_not_found_and_no_default_driver_specified
But it looks like there is more issue because when I tried to test with a helloWorld.asp file it failed with 500 internal server error as well. This is the structure of the folder:
/htdocs
/logfiles
/images
/Scripts
There was no Web.config so I added this Web.config
 
 
<!-- Web.Config Configuration File --> 
<?xml version="1.0"?>
<configuration> 
  <system.web>
      <customErrors mode="Off">
      </customErrors> 
  </system.web> 
</configuration>
And within the htdocs, I created a helloWorld.asp page with the following code. 
<%
    HelloWorldLabel.Text = "Hello, world!";
%>
<!DOCTYPE html>
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label runat="server" id="HelloWorldLabel"></asp:Label>
    </div>
    </form>
</body>
</html>
As I had never setup a ASP site, I am not sure what is wrong here. Any advice would be great. Thank you.