Practical - 01

AIM: Introduction of DotNet Framework and Designing of HTML pages.

DotNet:

DotNet is a framework by which one can do different types of work or we can say that it is a collection of different type of classes. It is used develop web based application, windows based application and console based application.

ASP.NET

What is ASP.Net?

What are the other technologies can be used to build web applications?

What are the advantages of web applications?

How Web Application Work (or Architecture of Web Application)?

Web Architecture

Web Architecture

Figure 1: Architecture of Web Application.

As shown in above figure, there are some client systems and a web server where we have installed our web applications. IIS is used to host Microsoft web application. If any client want to access the web application, it request for a web application with the help of web browser installed in client system. The HTTP protocol takes that request and passes it to the IIS server through internet. IIS server takes that request and passes it to the desired web application, where request is processed and an HTML output is generated which than pass to IIS and IIS pass the output to the requested client.

HTML (Hyper text Mark-up Language)

It is a hyper text mark up language to develop web pages. HTML is the language interpreted by a browser. It is not a case sensitive language.

Basic Structure of HTML

			
<html>
	<head>
		<title>
			Title Content
		</title>
	</head>
	<body>
		Body Content
	</body>
</html>
					

HTML Headings

Headings are defined with the <h1> to <h6> tags.

Underline, Bold & Italic Tag

Font, Colour & Size

<font color =”--” face = “--” size =””> Text </font>

Image

<img src = “” height = “” width =””/>

Marquee

<marquee direction=””></marquee>

List

<ol type=””>
<li></li>
</ol>

Linking

<a href =””></a>

Theory of Computation AIM 01 Transition Diagram

Prepared By

Piyush Garg,
Asst. Professor,
Department of CSE, CIST
E-mail: piyushgarg1985@yahoo.com