一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

里面是对一个body的属性进行server的一些设定,不过可以衍生到其他的一些htmlcontrol

时间:2008-01-12 编辑:简简单单 来源:一聚教程网

The first code snippet below uses the Attributes collection of the tag (implemented as an HtmlControl object) to reference its standard HTML attributes. This method gives you programmatic access to any of the HTML attributes that you normally hard-code into your tag.
The second method uses the Style object property of the HtmlControl object. By making calls to the Style object property's Add method, you can add custom styles to your tag. These are implemented as an inline style tag when it is rendered to the browser.
Because of this, you may want to research whether the style you are going to implement is compatible with the browser you are targeting.
The techniques used here can be used to set the properties of any HTML control that does not have a Server Control equivalent. An example would be the

tag.
Sample code 1: Use the "Attributes" collection of the body tag
<%@ Page Language="C#" %>


    This is the body text.

Sample Code 2: Use the "Style" collection of the body tag
<%@ Page Language="C#" %>