国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > HTML > 正文

里面是對一個(gè)body的屬性進(jìn)行server的一些設(shè)定,不過可以衍生到其他的一些htmlcontrol

2024-08-26 00:15:32
字體:
供稿:網(wǎng)友
the first code snippet below uses the attributes collection of the <body> 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 <body> 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 <body> 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 <p> tag.


sample code 1: use the "attributes" collection of the body tag


<%@ page language="c#" %>

<script language="c#" runat="server">
    protected void page_load(object sender, eventargs e) {
        body.attributes["bgcolor"] = "#cccccc";
    }
</script>

<body id="body" runat="server">
    this is the body text.
</body>



sample code 2: use the "style" collection of the body tag


<%@ page language="c#" %>

<script language="c#" runat="server">
    protected void page_load(object sender, eventargs e) {
        body.style.add("background-color","#cccccc");
    }
</script>

<body id="body" runat="server">
        this is the body text.
</body>



notes:
be sure to add the runat="server" attribute to your body tag and give it an id

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 滨海县| 江达县| 延安市| 赤水市| 青冈县| 涿州市| 卢龙县| 乌苏市| 宜春市| 南通市| 博野县| 息烽县| 开封县| 唐海县| 宁晋县| 临城县| 云南省| 湘潭县| 邳州市| 乌鲁木齐县| 澄迈县| 秦皇岛市| 禄劝| 惠州市| 鹤岗市| 诸城市| 习水县| 南充市| 刚察县| 民丰县| 宁明县| 罗定市| 青州市| 屏东市| 仁布县| 吉安市| 拉孜县| 左贡县| 石阡县| 都安| 开阳县|