asp.net 2.0

How to replace font tags with CSS

Without CSS you need to set the style for each paragraph on your page:

<p><font color=”#800090″ face=”Verdana,Geneva,Arial,Helvetica”>The latest update of Oracle Solaris 11 delivers unprecedented scale for cloud infrastructures and Oracle environments.</font></p>

You can use CSS to define in the style sheet that the color property of the <p> tag is #800090, and …

Learn more

How to write CSS formatted text on the web page in ASP.NET

If you want to use a stylesheet rule in a web page, you first need to link the page to the appropriate stylesheet. You can do this by adding a <link> element in the <head> section of your page. The <link> element references the file with styles you want to use. The next example allows the …

Learn more

How to create a simple content page in ASP.NET

You can use your master page created as described in the article: How to create a simple master page in ASP.NET in another page by adding the MasterPageFile attribute to the Page directive. This attribute indicates the filename of the master page you want to use:

In VB.NET

<%@ Page Language=”VB” MasterPageFile=”./SiteTemplate.master” … %>

In C#

<%@ Page Language=”C#” MasterPageFile=”./SiteTemplate.master” …

Learn more

How to create a simple master page in ASP.NET

You can create a master page by following the next steps in Visual Studio:

1. Select Website ➤ Add New Item from the menu.

2. Select Master Page

3. Give it a filename for example SiteTemplate.master

4. Click Add.

A master page is a similar to an ordinary ASP.NET web form and can …

Learn more

How to use Visual Studio 2010 to apply stylesheet rules in ASP.NET

The article: How to apply stylesheet rules in ASP.NET shows that you should add a <link> element (which includes stylesheet file) in the <head> section of your web page.  You can do the same by using Visual Studio by dragging your stylesheet from the Solution Explorer and dropping it onto the design surface of the page …

Learn more

How to apply stylesheet rules in ASP.NET

If you want to use a stylesheet rule in a web page, you first need to link the page to the appropriate stylesheet. You can do this by adding a <link> element in the <head> section of your page. The <link> element references the file with styles you want to use. The next example allows the …

Learn more

How to create a Stylesheet in ASP.NET

 

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation semantics (the look and formatting) of a document written in a markup language. CSS provides a cross-platform solution for formatting web pages that works in conjunction with HTML or XHTML and is supported by virtually all modern browsers.

 

Learn more

How to use the Calendar control in ASP.NET page in VB.NET

You can use this control to create a functionally rich calendar box which shows one month at a time. The end user can move from month to month, select a date, and select a range of days when the multiple selections are allowed. You can change almost every part of the Calendar control by using its …

Learn more

How to use the Calendar control in ASP.NET page in C#

You can use this control to create a functionally rich calendar box which shows one month at a time. The end user can move from month to month, select a date, and select a range of days when the multiple selections are allowed. You can change almost every part of the Calendar control by using its …

Learn more