Your First ASP.Net Project – Part 1 : Your First ASP.Net Project – Part 1 By:
Biswadip Goswami (c) Biswadip Goswami, biswadip@cognobytes.com
What’s in a page ! : What’s in a page ! Fundamentally an ASP.NET page is just the same as an HTML page.
Code in an HTML Page:
Hello World!
(c) Biswadip Goswami, biswadip@cognobytes.com
Slide 3 : Important aspects of developing a ‘Page’ in ASP.Net
Page structure
View state
Namespaces
Directives (c) Biswadip Goswami, biswadip@cognobytes.com
Elements of a Page : Elements of a Page Directives
Code declaration blocks
Code render blocks
ASP.NET server controls
Server-side comments
Server-side include directives
Literal text and HTML tags (c) Biswadip Goswami, biswadip@cognobytes.com
Slide 5 : Presentational elements within the page are contained within the
tag, while application logic or code can be placed inside
----------------------------------------------------------------