Friday, November 25, 2016

Dot Net Classes

                                                      Dot Net,Asp.Net Classes



                         
           Asp.Net Syllabus 

HTML (Hyper Text MarkUp Language)

HTML & XHTML Introduction

Font Markup Elements

Phrase Markup Elements

Type Essentials

Block-Level and Inline Tags

Linking

Tables

Frames

Creating HTML Forms

CSS (Cascading Style Sheets)

Inline, Embedded & External Styles

Selectors

Conflict Resolution between Styles

Typography

Layout Design

Positioning

Working with Colors and Images


Formatting Links

CSS best

ASP.NET INTRODUCTION

What is .NET?

ASP.NET and its uses

New in ASP.NET 4.5

Common Language Runtime

Internet Information Server

Installation of ASP.NET

Namespaces

.Net Framework Classes

The Visual Studio 2012 IDE

Web Site Navigation And Validation

Navigation Controls

Tree View Control Menu

Control Site Map Path

Control Wizard Control

ASP.net validation controls

Configuring validation controls

Master Pages & Themes

Simple Master Page Nested Master Page

Configuring Master Page Creating Themes

Applying Themes

Applying Stylesheet

State Management

Preserving State in Web Applications

Using Cookies to Preserve State

ASP.NET Session State

Application State

ASP.NET Web Services

Introduction to XML Web services

Creating Web Service

Setting the Web Service Attribute

Test and Run Your Web Service

Consuming a Web Service in Client Application

Consuming a Third Party Web service

ADO.NET (Working With Database)

Overview of ADO.NET

Connection Object

Command Object

Data Readers

Data Sets & Data Adapters

Using SQL Data Source

Uploading Files

Using File Upload Control

Setting the location and filename to upload the files

Upload the Files

Restricting the type and size of the Files

Security, Membership & Roles

Authentication

Authorization

Impersonation

Code Access Security

User Controls

Creating User Controls

Interacting with User Controls

Loading User Controls Dynamically

File I/O And Streams

Working with Serial Ports

Network Communications

Web Request and Web Response

Sending Mail

CSS

Introduction to CSS

Three ways to use CSS

CSS Properties

Designing website

Working with Templates

Interview Preparation

Personal Interview


Group Discussion

Interview questions and answer

1.What is ASP?
Active Server Pages (ASP), also known as Classic ASP, is a Microsoft's server-side technology, which helps in creating dynamic and user-friendly Web pages. It uses different scripting languages to create dynamic Web pages, which can be run on any type of browser. The Web pages are built by using either VBScript or JavaScript and these Web pages have access to the same services as Windows application, including ADO (ActiveX Data Objects) for database access, SMTP (Simple Mail Transfer Protocol) for e-mail, and the entire COM (Component Object Model) structure used in the Windows environment. ASP is implemented through a dynamic-link library (asp.dll) that is called by the IIS server when a Web page is requested from the server.

2.What is ASP.NET?
ASP.NET is a specification developed by Microsoft to create dynamic Web applications, Web sites, and Web services. It is a part of .NET Framework. You can create ASP.NET applications in most of the .NET compatible languages, such as Visual Basic, C#, and J#. The ASP.NET compiles the Web pages and provides much better performance than scripting languages, such as VBScript. The Web Forms support to create powerful forms-based Web pages. You can use ASP.NET Web server controls to create interactive Web applications. With the help of Web server controls, you can easily create a Web application.

3.What is the basic difference between ASP and ASP.NET?
The basic difference between ASP and ASP.NET is that ASP is interpreted; whereas, ASP.NET is compiled. This implies that since ASP uses VBScript; therefore, when an ASP page is executed, it is interpreted. On the other hand, ASP.NET uses .NET languages, such as C# and VB.NET, which are compiled to Microsoft Intermediate Language (MSIL).

4.In which event are the controls fully loaded?
Page load event guarantees that all controls are fully loaded. Controls are also accessed in Page_Init events but you will see that view state is not fully loaded during this event

5.How can we identify that the Page is Post Back?
Page object has an "IsPostBack" property, which can be checked to know that is the page posted back.

6.How information about the user's locale can be accessed?
The information regarding a user's locale can be accessed by using the System.Web.UI.Page.Culture property.

7.What is the difference between SQL notification and SQL invalidation?
The SQL cache notification generates notifications when the data of a database changes, on which your cache item depends.
The SQL cache invalidation makes a cached item invalid when the data stored in a SQL server database changes.

8.Which is the parent class of the Web server control?
The System.Web UI .Control class is the parent class for all Web server controls.

9.Can you set which type of comparison you want to perform by the CompareValidator control?
Yes, by setting the Operator property of the Compare Validator control.

10.What is the behavior of a Web browser when it receives an invalid element?
The behavior of a Web browser when it receives an invalid element depends on the browser that you use to browse your application.
Most of the browsers ignore the invalid element; whereas, some of them display the invalid elements on the page.