HtmlInputCheckBox クラス
サーバーの HTML <input type= checkbox> 要素へのプログラムによるアクセスを許可します。
名前空間: System.Web.UI.HtmlControls
アセンブリ: System.Web (system.web.dll 内)
構文
'宣言
Public Class HtmlInputCheckBox
Inherits HtmlInputControl
Implements IPostBackDataHandler
'使用
Dim instance As HtmlInputCheckBox
public class HtmlInputCheckBox : HtmlInputControl, IPostBackDataHandler
public ref class HtmlInputCheckBox : public HtmlInputControl, IPostBackDataHandler
public class HtmlInputCheckBox extends HtmlInputControl implements IPostBackDataHandler
public class HtmlInputCheckBox extends HtmlInputControl implements IPostBackDataHandler
適用できません。
解説
HtmlInputCheckBox を使用すると、true または false の状態を選択できます。コントロールが選択されているかどうかを確認するには、Checked プロパティを使用します。Checked プロパティの内容がサーバーへのポスト間で変更された場合は、HtmlInputCheckBox コントロールが提供する ServerChange イベントが発生します。これにより、イベントが発生するたびに命令のカスタム セットを実行するイベント ハンドラを作成できます。
メモ : |
---|
HtmlInputCheckBox コントロールをクリックしてもサーバーへのポストバックは行いません。コントロールの状態をサーバーに送り返すには、HtmlButton コントロールなどサーバーへのポストをサポートしているほかのコントロールを Web ページ上に用意する必要があります。 |
HtmlInputCheckBox のインスタンスの初期プロパティ値の一覧については、HtmlInputCheckBox コンストラクタのトピックを参照してください。
トピック | 場所 |
---|---|
方法 : ASP.NET 構文を使用して HTML サーバー コントロールを Web ページに追加する | Visual Studio ASP .NET での Web アプリケーションの作成 |
方法 : HTML サーバー コントロール プロパティをプログラムで設定する | Visual Studio ASP .NET での Web アプリケーションの作成 |
方法 : ASP.NET 構文を使用して HTML サーバー コントロールを Web ページに追加する | Visual Studio ASP .NET での Web アプリケーションの作成 |
方法 : HTML サーバー コントロール プロパティをプログラムで設定する | Visual Studio ASP .NET での Web アプリケーションの作成 |
方法 : ASP.NET 構文を使用して HTML サーバー コントロールを Web ページに追加する | ASP .NET Web アプリケーションの作成 |
方法 : HTML サーバー コントロール プロパティをプログラムで設定する | ASP .NET Web アプリケーションの作成 |
使用例
HtmlInputCheckBox コントロールのグループからユーザーがコントロールを選択した場合の単純な応答を次のコード例に示します。
<%@ Page Language="VB" AutoEventWireup="True" %>
<!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" >
<script language="VB" runat="server">
Sub SubmitBtn_Click (Source As Object, ByVal E as EventArgs)
If (Basketball.Checked = true) Then
' You like basketball
End If
If (Football.Checked = true) Then
' You like football
End If
If (Soccer.Checked = true) Then
' You like soccer
End If
End Sub
</script>
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" method="post" runat="server">
Enter Interests:
<input id="Basketball" checked="checked" type="checkbox" runat="server" /> Basketball
<input id="Football" type="checkbox" runat="server" /> Football
<input id="Soccer" type="checkbox" runat="server" /> Soccer
<input type="button" value="Enter" onserverclick="SubmitBtn_Click" runat="server" />
</form>
</body>
</html>
<%@ Page Language="C#" %>
<!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" >
<script language="C#" runat="server">
protected void SubmitBtn_Click(object sender, EventArgs e)
{
if (Basketball.Checked)
{
// You like basketball
}
if (Football.Checked)
{
// You like football
}
if (Soccer.Checked)
{
// You like soccer
}
}
</script>
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
Enter Interests:
<input id="Basketball" checked="checked" type="checkbox" runat="server" /> Basketball
<input id="Football" type="checkbox" runat="server" /> Football
<input id="Soccer" type="checkbox" runat="server" /> Soccer
<input id="Button1" type="button" value="Enter" onserverclick="SubmitBtn_Click" runat="server" />
</form>
</body>
</html>
<%@ Page Language="JScript" AutoEventWireup="True" %>
<!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" >
<script language="JSCRIPT" runat="server">
function SubmitBtn_Click (source : Object, e : EventArgs){
if(Basketball.Checked == true){
// You like basketball
}
if(Football.Checked == true){
// You like football
}
if(Soccer.Checked == true){
// You like soccer
}
}
</script>
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" method="post" runat="server">
Enter Interests:
<input id="Basketball" checked="checked" type="checkbox" runat="server" /> Basketball
<input id="Football" type="checkbox" runat="server" /> Football
<input id="Soccer" type="checkbox" runat="server" /> Soccer
<input type="button" value="Enter" onserverclick="SubmitBtn_Click" runat="server" />
</form>
</body>
</html>
.NET Framework のセキュリティ
- AspNetHostingPermission (ホスト環境での動作に必要なアクセス許可)要求値 : LinkDemand; アクセス許可値 : Minimal。
- AspNetHostingPermission (ホスト環境での動作に必要なアクセス許可)要求値 : InheritanceDemand; アクセス許可値 : Minimal。
継承階層
System.Object
System.Web.UI.Control
System.Web.UI.HtmlControls.HtmlControl
System.Web.UI.HtmlControls.HtmlInputControl
System.Web.UI.HtmlControls.HtmlInputCheckBox
スレッド セーフ
この型の public static (Visual Basicでは共有) メンバはすべて,スレッド セーフです。インスタンス メンバの場合は,スレッド セーフであるとは限りません。
プラットフォーム
Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition
Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。
バージョン情報
.NET Framework
サポート対象 : 3.0,2.0,1.1,1.0
参照
関連項目
HtmlInputCheckBox メンバ
System.Web.UI.HtmlControls 名前空間