サーチ…


App.Configからの値

<asp:Literal runat="server" text="<%$ AppSettings:MyAppSettingName %>"/>

評価式

<div>
  The time is now <%= DateTime.Now.ToString() %>
</div>

ASPマークアップ内のコードブロック

<div>
    <form id="form1" runat="server">
        <% 
            for (int i = 1; i <= 10; j++)
            {
                Response.Write(i) + " ";
            }
        %>
    </form>
<div>


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow