Just an ASP.NET newbie here. I'm reading this book: 'Beginning ASP.NET Databases using VB.NET'. One of the examples, early in the book, in Ch. 3, actually. it is talking about 'Creating a Connection to a SQL Server Database' and I'm basically trying to set up my IIS, which is located here: C:\Inetpub\wwwroot.
I have a file named 'SQLServer_connection.aspx', and this is the content of the file:
<%@ Import namespace="System.Data" %>
<%@ Import namespace="System.Data.SqlClient" %>
<html>
<head>
<title>Beginning ASP.NET Databases Chapter 3</title>
</head>
<body>
<h4>First Example: Listing data from the Employees table</ ...
Go to the complete details ...