Search PPTs

Friday, July 26, 2013

PPT On DHTML And ASP

Presentation On DHTML And ASP
Download

DHTML And ASP Presentation Transcript:
1.DHTML & ASP

2.INRODUCTION   
DHTML is NOT a language.
DHTML is a TERM describing the art of making dynamic and interactive web pages.
DHTML combines HTML, JavaScript, the HTML  and CSS.
"Dynamic HTML is a term used by some vendors to describe the combination of HTML, style sheets and scripts that allows documents to be animated."

3.ASP
Active Server Pages (ASPs) are Web pages that contain server-side scripts in addition to the usual mixture of text and HTML tags.
Server-side scripts are special commands you put in Web pages that are processed before the pages are sent from the server to the web-browser of someone who's visiting your website.

4.Before the server sends the Active Server Page to the browser, it runs all server-side scripts contained in the page.
Active Server Pages are given the ".asp" extension.

5.Server-side scripts typically start with <% and end with %>.
The <% is called an opening tag, and the %> is called a closing tag. In between these tags are the server-side scripts.
 You can insert server-side scripts anywhere in your webpage - even inside HTML tags.

6.Since the server must do additional processing on the ASP scripts, it must have the ability to do so.
The only servers which support this facility are Microsoft Internet Information Services & Microsoft Personal Web Server.

7.

Hello, World !

<%
Response.Write “Hello, World!”
%>


8.EXAMPLE DESCRIPTION
As you can see above, we have enclosed a single line of VBScript within the opening and closing tags.
 It says,
Response.Write “Hello, World!”
This statement displays the string “Hello, World!” on the webpage.

9.Displaying the Date


Hello, World !

<%= Date %>
10.VARIABLES
A variable is declared in VBScript using the Dim keyword.
 <%
 Dim myVar
  %>
In VBScript, all variables are variants. Their type is determined automatically by the runtime interpreter, and the programmer need not (and should not) bother with them.

No comments:

Related Posts Plugin for WordPress, Blogger...

Blog Archive