ONLINE NESCAFE OF COLLEGE CAMPUS-16
(FORM OF CHANGING DATABASE OF ADMIN)
CHANGE_PASSWORD.ASP
This page shows you the how the form is created for changing the password of administrator in the database ADMIN.
<html>
<body>
<form method=”post” action=”Validate_Password.asp”>
<table align=”center” cellpadding=”0″ cellspacing=”0″ border=”0″>
<tr>
<td>Current Password:</td>
<td><input value=””></td>
</tr>
<tr>
<td>New Password:</td>
<td><input value=””></td>
</tr>
<tr>
<td>Confirm Password:</td>
<td><input value=””></td>
</tr>
<tr>
<td align=”center” colspan=”2″><input value=”Change Password”></td>
</tr>
</table>
</form>
</body>
</html>
(ASP SCRIPT OF CHANGING PASSWORD FROM DATABASE)
VALIDATE_PASSWORD.ASP
As you can see in [...]
How to make a website using ASP(TUTORIAL-16)
How to make a website using ASP(TUTORIAL-15)
ONLINE NESCAFE OF COLLEGE CAMPUS-15
(FORM OF UPDATING PRODUCTS FROM DATABASE)
UPDATE.ASP
This page shows you the how the form is created for updating any item to the database PRODUCTS.
<html>
<body>
<form method=”post” action=”update_item.asp”>
<table align=”center” cellpadding=”0″ cellspacing=”0″ border=”0″>
<tr>
<td>Item Name:</td>
<td><input value=””></td>
<td><sub><font face=”Arial, Helvetica, sans-serif” color=”#FF0000″ size=”-1″>*Enter the name in UPPERCASE</font></sub></td>
</tr>
<tr>
<td>Item Price:</td>
<td><input value=””></td>
</tr>
<tr>
<td>Item Quantity:</td>
<td><input value=””></td>
</tr>
<tr>
<td>Image name:</td>
<td><input value=””></td>
</tr>
<tr>
<td align=”center” colspan=”2″><input value=”Update”></td>
</tr>
</table>
</form>
</body>
</html>
(ASP SCRIPT OF [...]
How to make a website using ASP(TUTORIAL-14)
ONLINE NESCAFE OF COLLEGE CAMPUS-14
(FORM OF DELETING PRODUCTS FROM DATABASE)
DELETE.ASP
This page shows you the how the form is created for deleting any item to the database PRODUCTS.
<html>
<body>
<form method=”post” action=”Delete_item.asp”>
<table align=”center” cellpadding=”0″ cellspacing=”0″ border=”0″>
<tr>
<td>Item Name:</td>
<td><input value=””></td>
<td><sub><font face=”Arial, Helvetica, sans-serif” color=”#FF0000″ size=”-1″>*Enter the name in UPPERCASE</font></sub></td>
</tr>
<tr>
<td align=”center” colspan=”2″><input value=”Delete”></td>
</tr>
</table>
</body>
</html>
(ASP SCRIPT OF DELETING PRODUCTS FROM DATABASE)
DELETE ITEM.ASP
As you [...]
How to make a website using ASP(TUTORIAL-13)
ONLINE NESCAFE OF COLLEGE CAMPUS-13
(FORM OF ADDING PRODUCTS TO DATABASE)
ADD.ASP
This page shows you the how the form is created for adding any item to the database PRODUCTS.
<html>
<body>
<form method=”post” action=”Add_item.asp”>
<table align=”center” cellpadding=”0″ cellspacing=”0″ border=”0″>
<tr>
<td>Item Name:</td>
<td><input value=””></td>
<td><sub><font face=”Arial, Helvetica, sans-serif” color=”#FF0000″ size=”-1″>*Enter the name in UPPERCASE</font></sub></td>
</tr>
<tr>
<td>Item Price:</td>
<td><input value=””></td>
</tr>
<tr>
<td>Item Quantity:</td>
<td><input value=””></td>
</tr>
<tr>
<td>Image Name:</td>
<td><input value=””></td>
</tr>
<tr>
<td>Type</td>
<td><Select>
<option>MAGGI</option>
<option>COLD</option>
<option>HOT</option>
<option>OTHER</option>
</Select>
</td>
</tr>
<tr>
<td align=”center” colspan=”2″><input value=”Add”></td>
</tr>
</table>
</form>
</body>
</html>
(ASP SCRIPT OF [...]
How to make a website using ASP(TUTORIAL-12)
ONLINE NESCAFE OF COLLEGE CAMPUS-12
(forms of FUCTIONS OF ADMINISTRATOR)
FUNCTIONS OF ADMIN.ASP
This page is simply divided into two frames. The top frame is the page HEADER OF FUNCTIONS OF ADMIN.ASP and the bottom frame is named ADMIN DOWN.
The script for that is:
<frameset rows=”38%,*”>
<frame src=”header of functions of admin.asp” frameborder=”no” scrolling=”no”>
<frame name=”admin down” frameborder=”no” scrolling=”yes”>
</frameset><noframes></noframes>
Now in every [...]
How to make a website using ASP(TUTORIAL-11)
ONLINE NESCAFE OF COLLEGE CAMPUS-11
(FUCTIONS OF ADMINISTRATOR)
HEADER OF FUNCTIONS OF ADMIN.ASP
After creating the homepage, first of all you have to create all the script for all the functions to be performed by the administrator. For example, in my site , the administrator will have to perform the functions of updating the database of products, adding [...]
How to create a website using ASP(TUTORIAL-10)
ONLINE NESCAFE OF COLLEGE CAMPUS-10
(DATABASE CONNECTIVITY, CHECKING FROM DATABASE)
verifyadmin.ASP
Whenever you login in any site, first of all, it is checked if the user has ever sign up and the details of the user are present in the database of the system. This is done with the help of the following script:
I have also created a [...]
How to create a website using ASP(TUTORIAL-9)
ONLINE NESCAFE OF COLLEGE CAMPUS-9
(DATABASE CONNECTIVITY, CHECKING FROM DATABASE)
verifyuser.ASP
Whenever you login in any site, first of all, it is checked if the user has ever sign up and the details of the user are present in the database of the system. This is done with the help of the following script:
Here I have also created [...]
How to create a website using ASP(TUTORIAL-8)
ONLINE NESCAFE OF COLLEGE CAMPUS-8
(VALIDATIONS of REGISTRATION FORM, DATABASE CONNECTIVITY, INSERTION IN DATABASE)
masterdb.ASP
You must have registered in various websites and for that you must have fill a registration form. Whenever you make a mistake in filling up that form, you are displayed a message about the error.
The script below shows you how that errors are [...]
How to create a website using ASP(TUTORIAL-7)
ONLINE NESCAFE OF COLLEGE CAMPUS-7
(DATABASE CREATION and CONNECTIVITY)
Now as you have created a registration form, you must create a database so that the user details get stored in the database.
FIRST OF ALL, LET ME MAKE IT CLEAR TO YOU THAT THIS IS NOT A FILE, SO I HAVE NOT GIVEN ANY NAME TO IT. THIS [...]
How to create a website using ASP(TUTORIAL-6)
ONLINE NESCAFE OF COLLEGE CAMPUS-6
(attributes of form tag and REGISTRATION FORM)
SIGN UP.ASP
You must have registered in various websites and for that you must have fill a registration form. Today I am going to teach you about how a registration form is created.
The script below is same as the one in the file head.asp so that [...]
How to make a website using ASP(TUTORIAL-5)
ONLINE NESCAFE OF A COLLEGE CAMPUS-5
(creating HOMEPAGE using FRAMES)
FRAME.asp
This script is used divide the entire home page into 5 frames and inserting each part we have into one of the frames in appropriate position so that our home page looks attractive. The pages we have created earlier are used in this page.
The homepage is divided into [...]
How to make a website using ASP(TUTORIAL-4)
ONLINE NESCAFE OF A COLLEGE CAMPUS-4
(APPLICATION AND RESPONSE OBJECTS)
LEFT FRAME.asp
This page is used only for increasing the attraction of your site and checking the number of visitors of the site.
The entire script between the <% and %> is use to calculate the number of users visiting the site. This is called the server side scripting [...]
How to make a website using ASP(TUTORIAL-3)
ONLINE NESCAFE OF A COLLEGE CAMPUS-3
(creating a LOGIN FORM FOR USER and providing LINK)
LOGIN PAGE.ASP
The script below shows you how to build a simple login form for userwith the help of the FORM tag. The TABLE tag is used only for the alignment of the form. TR tag is used to create a new row [...]
How to make a website using ASP(TUTORIAL-2)
ONLINE NESCAFE OF A COLLEGE CAMPUS-2
(creating a LOGIN form)
LOGIN FOR ADMIN.ASP
The script below shows you how to build a simple login form with the help of the FORM tag. The TABLE tag is used only for the alignment of the form. TR tag is used to create a new row where as TD tag is [...]