CLICK HERE TO DOWNLOAD PPT ON ASP.NET OVERVIEW
ASP.NET OVERVIEW Presentation Transcript
1.ASP.NET
2.ABOUT COMPANY
Cyber Futuristics Private Limited is India based, ISO 9001:2008 certified global IT and BPO services company.
The key domain areas in Cyfuture comprises of innovative Software Solutions, Web Solutions, E-business consulting, Call Center Services, Email response, Real-time Chat, and related value-added services.
It serve more than 100 organizations worldwide including majority of European as well as American Fortune 500 players.
Languages & Platforms • PHP Programming • ASP .NET / ASP Programming • C# Programming • Java Programming • VB .NET Programming • AJAX Programming • Oracle Developer 2000
Cyber Futuristics Private Limited is India based, ISO 9001:2008 certified global IT and BPO services company.
The key domain areas in Cyfuture comprises of innovative Software Solutions, Web Solutions, E-business consulting, Call Center Services, Email response, Real-time Chat, and related value-added services.
It serve more than 100 organizations worldwide including majority of European as well as American Fortune 500 players.
Languages & Platforms • PHP Programming • ASP .NET / ASP Programming • C# Programming • Java Programming • VB .NET Programming • AJAX Programming • Oracle Developer 2000
3.Operating Environments
Microsoft windows
Sun solaris
Linux
Branches
New Delhi
Jaipur
New York
Microsoft windows
Sun solaris
Linux
Branches
New Delhi
Jaipur
New York
4.Introduction to ASP.NET
ASP.NET is a part of the Microsoft .NET framework, developed by Microsoft, and is a powerful tool for creating dynamic and interactive web pages
ASP.NET is a successor of Microsoft’s ASP technology
ASP.NET is built on the Common Language Runtime(CLR), allowing programmers to write ASP.NET code using any supported .NET language
ASP.NET is a part of the Microsoft .NET framework, developed by Microsoft, and is a powerful tool for creating dynamic and interactive web pages
ASP.NET is a successor of Microsoft’s ASP technology
ASP.NET is built on the Common Language Runtime(CLR), allowing programmers to write ASP.NET code using any supported .NET language
5.Language Compiler List
Ada
APL
Basic (Visual Basic)
C#
C
C++
Java
Java script
COBOL
Perl
PHP
Pascal
Python
Fortran
Ruby
Haskell (Utrecht U.)
Ada
APL
Basic (Visual Basic)
C#
C
C++
Java
Java script
COBOL
Perl
PHP
Pascal
Python
Fortran
Ruby
Haskell (Utrecht U.)
6.NET Framework
7.Namespace
The base class libraries are organized into logical groupings of code called namespaces
A namespace is a hierarchical way to identify resources in .NET
The System object is at the top of the namespace hierarchy, and all objects inherit from it
ASP.NET: System.Web namespace
WebForms: System.Web.UI namespace
HTML Server Controls: System.Web.UI.Control.HTMLControl
ASP.NET Server Controls: System.Web.UI.Control.WebControl
The base class libraries are organized into logical groupings of code called namespaces
A namespace is a hierarchical way to identify resources in .NET
The System object is at the top of the namespace hierarchy, and all objects inherit from it
ASP.NET: System.Web namespace
WebForms: System.Web.UI namespace
HTML Server Controls: System.Web.UI.Control.HTMLControl
ASP.NET Server Controls: System.Web.UI.Control.WebControl
8.Adding a reference to an assembly
9.COMPILATION IN .NET
10.What is ASP.NET?
Asp1.0 was released in 1996
ASP stands for Active Server Pages
ASP.NET file runs inside Internet Information Server)
ASP.NET provides services to allow the creation, deployment, and execution of Web Applications and Web Services
Asp1.0 was released in 1996
ASP stands for Active Server Pages
ASP.NET file runs inside Internet Information Server)
ASP.NET provides services to allow the creation, deployment, and execution of Web Applications and Web Services
11.A classic ASP file has the file extension ".asp“
Web Applications are built using Web Forms
ASP.NET is built on the Common Language Runtime(CLR), allowing programmers to write ASP.NET code using any supported .NET language
Web Applications are built using Web Forms
ASP.NET is built on the Common Language Runtime(CLR), allowing programmers to write ASP.NET code using any supported .NET language
12.VIEWS OF ASP.NET APPLICATION
The Visual Studio .NET IDE provides two different views of a web form
Design view
HTML view
The Design view represents the user interface of the web forms page
The HTML view represents HTML code of an ASP.NET web form
The Visual Studio .NET IDE provides two different views of a web form
Design view
HTML view
The Design view represents the user interface of the web forms page
The HTML view represents HTML code of an ASP.NET web form
13.ASP.NET - Web Server Controls
Web server controls are traditional form controls like BUTTON, CHECK BOX, TEXT BOX, etc.
Web server controls are special ASP.NET tags understood by the server
They require a runat="server" attribute to work
The syntax for creating a Web server control is:
<asp:control_name id="some_id" runat="server" />
14.Programming Model
Web server controls are traditional form controls like BUTTON, CHECK BOX, TEXT BOX, etc.
Web server controls are special ASP.NET tags understood by the server
They require a runat="server" attribute to work
The syntax for creating a Web server control is:
<asp:control_name id="some_id" runat="server" />
14.Programming Model
15.Server Controls
Web Controls provide extensive properties to control display and format, e.g.
Font
BackColor, ForeColor
BorderColor, BorderStyle, BorderWidth
Style, CssClass
Height, Width
Visible, Enabled
Web Controls provide extensive properties to control display and format, e.g.
Font
BackColor, ForeColor
BorderColor, BorderStyle, BorderWidth
Style, CssClass
Height, Width
Visible, Enabled
16.Database Connectivity
ADO.NET provides tools to implement data access easily and efficiently
The classes under the Data Providers
The connection object, used to provide connection to the database
The command object, used to execute a command against a database
The DataReader object, data is fetched one by one
The DataAdapter object, data is fetched together and saved in data set
ADO.NET provides tools to implement data access easily and efficiently
The classes under the Data Providers
The connection object, used to provide connection to the database
The command object, used to execute a command against a database
The DataReader object, data is fetched one by one
The DataAdapter object, data is fetched together and saved in data set
17.Application State Maintenance
Cookies ,used to store temporary data on client side
Session, used to save data on server side
View state, when form is submitted it reappears in the browser window together with all form values
Cookies ,used to store temporary data on client side
Session, used to save data on server side
View state, when form is submitted it reappears in the browser window together with all form values
0 comments