Places to See in Shimla 1. Summer Hills There is a lot do and see in the picturesque town of Shimla. However, there are only a few places that offer uninterrupted Panoramic views that do …
Read More »Uncategorized
Creating Empty Web Application
To create your first Visual Studio Application, follow these steps 1. Choose File Tab. 2. Click on New. 3. Select ASP.NET Empty Web Site. 4. Choose the Location. 5. Then click OK button. Fig 2. …
Read More »Binding a Master Page to a Site Map
Website Navigation works best when combined with another ASP.NET feature that is master page. If you want to show the same navigation controls on every page the easiest way is to create a master page …
Read More »XSL output methods
Options for displaying XML XSL output methods <xsl:output cdata-section-elements="namelist" doctype-public="string" doctype-system="string" encoding="string" indent="yes" | "no" media-type="mimetype" method="html" | "name" | "text" | "xml" omit-xml-declaration="yes" | "no" standalone="yes" | "no" version="version_number" /> The xsl:output element is used …
Read More »Creating a table in MYSQL database
Creating a table in MYSQL database As you know, tables are used to store data. Here, we will create a very simple table Courses containing three fields :Course id (the primary key),Course name (the name …
Read More »Reading Data from a Table
Reading Data from a Table To read data in SQL, you create a query using the SELECT statement. To retrieve a list of all the data in the Course table, use: mysql > SELECT * …
Read More »Updating Data in a Table
Updating Data in a Table You can also change the existing data in a table with the UPDATE statement. As with the SELECT statement, you can add a WHERE clause to specify exactly which rows …
Read More »Difference between get and post method in PHP
Difference between get and post method in PHP GET Method POST Method GET Method is used to transfer data from one page to another through URL. POST Method is used to transfer data from one …
Read More »Print a Directory Listing
We can print a list of our files in our directory by instructing DOS to send the information to our printer. Directions: 1. Type: dir>prn and press Enter. 2. The > symbol stands for …
Read More »Is semi colon needed to end the statement in JavaScript?
Putting semi color at the end of the statement is optional, if you want you can place else you can leave. Putting semi color at end of the statement depends on the user’s choice. …
Read More »Logical Operators In Java Script
Logical operators are used to perform Boolean operations on operands. Logical operators are and (&&), or ( || ) , not (!) . The value returned after using a logical operator is Boolean value true …
Read More »Dynamic Styles In DHTML
As the Internet gained popularity, HTML became increasing weakened. People started demanding more and more features, and this caused the creation of DHTML. It also created CSS, or Cascading Style Sheets. Styles allow us …
Read More »CSS Identifier
CSS identifier also known as CSS selectors. Selectors are used to access the CSS styles. They can be very useful sometimes you want to apply a special style to a particular element or a particular …
Read More »