Low cost ecommerce web development India flash website design

Let’s look at the example line by line.
The first few lines are the opening HTML tags for any page. There’s no ASP
code within them. The ASP block begins with the statement,
Dim DB
which is a declaration of the variable that we’re gonna use later on. The
second line,
Set DB = Server.CreateObject (“ADODB.Connection”)
does the following two things:
Firstly, the right-hand-side statement, Server.CreateObject() is used to
create an instance of a COM object which has the ProgID
ADODB.Connection. The Set Statement then assigns this reference to our
variable, DB. Now, we use the object just created to connect to the database
using a Connection String.

Freelance web designer ASP PHP ecommerce web development India
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28. 29 30 31. 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64. 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91