Terms Flashcards
HyperText Markup Language (HTML)
is based on the standards presented by the World Wide Web Consortium. W3C is an international community consisting of over 300 member organizations, a full-time staff, and the public working together to develop Web standards. Their mission, found at w3.org, is “to lead the World Wide Web to its full potential by developing protocols and guidelines that ensure the long-term growth of the Web.
Document Type Definition (DTD)
is a tool used by the developer to ensure that Web pages follow a specified markup language. Web pages are tested against these standards during development. If the developer wants a page to follow all the XHTML standards, the word “Strict” is placed in a declaration statement in the Web page. If the XHTML page includes some older HTML, the word “Transitional” is used. Finally, “Frameset” is used in pages containing HTML frames, which are on the brink of extinction. “Transitional” is the most commonly used DTD today because of the slow transition from HTML to XHTML.
<!DOCTYPE>
is the declaration statement that uses the three words described above: strict, transitional, and frameset. Although it looks like a tag, it is not. In addition to the level of strictness, it includes other information such as whether the page is using HTML or XHTML, the version of the markup language being used, and the location of the w3.org Web site containing the Document Type Definition. The online DTD contains the rules that are used to test the page.
element
is the name of an XHTML structure
tags
tags are used to create XHTML
Attributes
define any properties that an element might want to include. They are placed inside the starting tag after the element name. The attribute name is followed by an equal sign and its value: <img></img>. The quotation marks around the attribute value may either be single, as shown, or double.
Attribute minimization
is an HTML coding technique that allows the developer to use the attribute name without writing its value when the name of the attribute is the same as the value of the attribute. This practice is not allowed in XHTML.
child elements
All nested elements within the starting and ending tags are called child elements
AJAX
Asynchronous JavaScript and XML (AJAX) is a set of Web development codes and techniques used to create client-side interactive Web interfaces and applications.
ASP.NET
A free technology which allows anyone to create dynamic Web sites.
ASP.NET Membership
A function which stores members in SQL Express.
Application State
A collection of shared user-defined variables.
Authentication
An act to verify the identity of an Internet user, or a computer or person.
Body
The main or central part of a Web page.
CSS
Cascading Style Sheets (CSS) are declarations and rules which describe how a document should be presented on the Web.
Concatenate
A function which allows users link or unite objects.
Content Page
A content page is a Web page generated by the content management system.
Cookie
Text files that Web browsers use to store information on a user’s local hard drive.
Data Binding
A technique which involves connecting data to a server control.
Database
A collection of data organized into tables which may be used to keep track of information in an easy-to-reference format.
Event
A message produced by a browser that something has occurred.
HTTP
Hypertext Transport Protocol (HTTP) is a protocol that transmits requests and data between user agents and Web servers.
IIS
Internet Information Server (IIS) is Microsoft’s Web server software which provides security and FTP service for delivering World Wide Web documents.