Category: ASP Net
-
ASP.NET Web Pages – Folders
This chapter is about folders and folder paths. In this chapter you will learn: Logical Folder Structure Below is a typical folder structure for an ASP.NET web pages web site: Physical Folder Structure The physical structure for the “Images” folder at the website above might look like this on a computer: C:\Johnny\Documents\MyWebSites\Demo\Images Virtual and Physical…
-
ASP.NET Web Pages – Page Layout
With Web Pages it is easy to create a web site with a consistent layout. A Consistent Look On the Internet you will discover many web sites with a consistent look and feel: With Web Pages this can be done very efficiently. You can have reusable blocks of content (content blocks), like headers and footers,…
-
ASP.NET Web Pages – Adding Razor Code
ASP.NET Web Pages use Razor markup with C# or VB code Razor Markup Razor is a simple markup syntax for embedding server code (C# or VB) into ASP.NET web pages. Example The page above contains both ordinary HTML markup and Razor markup. Razor Syntax for C# C# Example Razor Syntax for VB VB Example More About C#…
-
ASP.NET Web Pages
Easy Learning with “Run Example” Our “Run Example” tool displays the ASP.NET code and the HTML output simultaneously. Click on the “Run Example” button to see how it works: Web Pages Example <html><body> <h1>Hello Web Pages</h1> <p>The time is @DateTime.Now</p></body></html> Run Example » ASP.NET Web Pages Web Pages is one of many programming models for creating ASP.NET web…
-
ASP and ASP.NET Tutorials
ASP stands for Active Server Pages ASP is a development framework for building web pages. ASP supports many different development models: The ASP Technology ASP and ASP.NET are server side technologies. Both technologies enable computer code to be executed by an Internet server. When a browser requests an ASP or ASP.NET file, the ASP engine reads the file,…