Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

HtmlGenericControlクラスを使用する

HtmlGenericControl クラス (System.Web.UI.HtmlControls)
特定の .NET Framework クラスで表されていないすべての HTML サーバー コントロール要素のためにメソッド、プロパティ、イベントを定義します。 ...

このクラスを使用して、<span>、<div>、<body>、<font> など、.NET Framework クラスで直接表されていない HTML サーバー コントロール要素を表します。

ソースコード

<% @Page Language="c#" %>

<script runat="server">
private void Page_Load(object sender, EventArgs e) {
    TheBody.Style[HtmlTextWriterStyle.BackgroundColor] = "lightblue";
}
</script>

<html>
<body id="TheBody" runat="server">
<form runat="server">
</form>
</body>
</html>

ページ