Service Broker Architecture

Service Broker is based on the Service Broker architecture. This architecture consists of the following database objects: Message : Is the data exchanged between the services. Service :  Is an addressable endpoint for the conversations. The Service Broker messages are sent from one service to another. The two types of services that take part in [...]

Continue reading →

Service Broker

Service Broker is a message-based communication platform that helps in maintaining  reliable query processing and asynchronous communication. Consider a scenario of credit card services, when a person makes a purchase through a credit card, the credit card details are validated and a purchase transaction is completed. In addition, an entry is made in the database [...]

Continue reading →

How to make a website using ASP(TUTORIAL-16)

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 [...]

Continue reading →

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 [...]

Continue reading →

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 [...]

Continue reading →

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 [...]

Continue reading →

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” [...]

Continue reading →

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 [...]

Continue reading →

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 [...]

Continue reading →