Re: Basic Information about ASP.NET
Hello
Unfortunately, that's pretty much like asking : "What occupations are available for me in the world?" Well, it's not quite that bad, but there are a lot of different ways to do it. First, let's break it down into two sections - Connecting to and getting information from the database, and Displaying it in the web page. For each of those sections (which could easily have been broken down further), there are multiple possibilities, which this tutorial will at least partially address.
However, to make this merely a simple tutorial, instead of a book, hitting the highlights of the basic things necessary for Dispaying DataBase information on a web page, using ASP.Net. Also, the only databases covered here will be SQL Server and MS Access, the only language covered here will be VB.Net and we're only going to address Select Queries, leaving out (updates, deletes and inserts).
In connecting to a database, there are several items which are necessary:
* Namespaces
* Connection String
* Connection
* SQL Query (or non-query, in the case of an insert, update or delete)
* Opening the Connection
* Executing the Query
* Closing the connection
|