| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

ASP.NET 2005 コード ブロック

提供: MyMemoWiki
2020年2月15日 (土) 07:30時点におけるPiroto (トーク | 投稿記録)による版 (ページの作成:「==ASP.NET 2005 コード ブロック== [ASP.NET][ASP.NET 2005][Visual Studio][C#} ==コード ブロック== *http://msdn.microsoft.com/ja-jp/library/f0111sbh(VS.80…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

ASP.NET 2005 コード ブロック

[ASP.NET][ASP.NET 2005][Visual Studio][C#}

コード ブロック

シングルファイル ページ モデル

  • runat="server" 属性を指定した script ブロックにページのコードを記述
  • 一般にページのコントロールとやり取りします
  • スクリプト ブロックのコードが HTML と ASP.NET マークアップ タグと個別に記述
  • 1 つのページに複数の <script> ブロックを含めることはできますが、ページ上のすべてのブロックで同じプログラミング言語を使用する必要

すべての ASP.NET の手順とグローバル変数は、ASP <%...%> 形式のデリミタの間ではなく、<html> タグの前に配置した <script runat="server"> ブロックで宣言する必要があります。

初期化コードを実行する必要がある場合は、次のコード例に示すように、ASP.NET エンジンがページを読み込んだ直後に発生する Page_Load イベントに記述する

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
    String globalStr = "Global String";
    protected void Page_Load(object sender, EventArgs e)
    {
        globalStr += " Initialized.";
    }
    String GetMessage()
    {
        return "Hello";
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>GodeBlock Sample</title>
</head>
<body>
        <% = globalStr %>
        
<% = GetMessage() %>
<% String s = GetMessage(); s += " ASP.NET"; Response.Write(s); %>
<script runat="server"> void GetAlert() {
Response.Write("

Alert Message!

");
          }
       </script>
       <% GetAlert(); %>
</body>
</html>

0178 asp codeblock01.jpg

分離コード ページ モデル

  • 1 つの .aspx ファイルにマークアップを格納し、別のファイルにプログラム コードを格納できます。
Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page 
{
    protected String globalStr = "Global String";

    protected void Page_Load(object sender, EventArgs e)
    {
        globalStr += " Initialized.";
    }
    protected String GetMessage()
    {
        return "Hello";
    }
    protected void PrintMessage()
    {
        String s = GetMessage();
        s += " ASP.NET";
        Response.Write(s);
    }
}
Default.aspx
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>GodeBlock Sample</title>
</head>
<body>
        <% = globalStr %>
        
<% = GetMessage() %>
<% PrintMessage(); %>
</body>
</html>


Web ページの埋め込み

埋め込みコードブロック

  • ページのレンダリング中に実行されるサーバー コード
  • このブロックのコードは、プログラミング ステートメントを実行し、現在のページ クラスの関数を呼び出すことができます
  • <% = expression %> という構文を使用して式を解決し、その値をブロックに返します
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>GodeBlock Sample</title>
</head>
<body>
        <% for (int i = 0; i < 3; i++) { %>

<% = i %>

        <%  } %>
</body>
</html>

用途

  • コントロールまたはマークアップ要素の値を関数の戻り値に設定
  • 計算結果をマークアップまたはコントロールのプロパティに直接埋め込む

埋め込みコード ブロックは、主に以前の ASP テクノロジとの後方互換性を維持するために ASP.NET Web ページでサポートされる。分離コードやスクリプト ブロックのコードほど柔軟ではないため、デバッグと保守が困難になる。