Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlInputCheckBox.cs / 1 / HtmlInputCheckBox.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* HtmlInputCheckBox.cs
*
* Copyright (c) 2000 Microsoft Corporation
*/
namespace System.Web.UI.HtmlControls {
using System.ComponentModel;
using System;
using System.Collections;
using System.Collections.Specialized;
using System.Globalization;
using System.Web;
using System.Web.UI;
using System.Security.Permissions;
///
///
/// The class defines the methods,
/// properties, and events for the HtmlInputCheckBox control. This class allows
/// programmatic access to the HTML <input type=
/// checkbox>
/// element on the server.
///
///
[
DefaultEvent("ServerChange"),
SupportsEventValidation,
]
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class HtmlInputCheckBox : HtmlInputControl, IPostBackDataHandler {
private static readonly object EventServerChange = new object();
/*
* Creates an intrinsic Html INPUT type=checkbox control.
*/
///
/// Initializes a new instance of a class.
///
public HtmlInputCheckBox() : base("checkbox") {
}
/*
* Checked property.
*/
///
/// Gets or sets a value indicating whether the checkbox is
/// currently selected.
///
[
WebCategory("Default"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
TypeConverter(typeof(MinimizableAttributeTypeConverter))
]
public bool Checked {
get {
string s = Attributes["checked"];
return((s != null) ? (s.Equals("checked")) : false);
}
set {
if (value)
Attributes["checked"] = "checked";
else
Attributes["checked"] = null;
}
}
/*
* Adds an event handler for the OnServerChange event.
* value: New handler to install for this event.
*/
///
/// Occurs when
///
[
WebCategory("Action"),
WebSysDescription(SR.Control_OnServerCheckChanged)
]
public event EventHandler ServerChange {
add {
Events.AddHandler(EventServerChange, value);
}
remove {
Events.RemoveHandler(EventServerChange, value);
}
}
/*
* This method is invoked just prior to rendering.
*/
///
///
///
protected internal override void OnPreRender(EventArgs e) {
base.OnPreRender(e);
if (Page != null && !Disabled) {
Page.RegisterRequiresPostBack(this);
Page.RegisterEnabledControl(this);
}
// if no change handler, no need to save posted property unless
// we are disabled
if (Events[EventServerChange] == null && !Disabled) {
ViewState.SetItemDirty("checked",false);
}
}
/*
* Method used to raise the OnServerChange event.
*/
///
/// [To be supplied.]
///
protected virtual void OnServerChange(EventArgs e) {
// invoke delegates AFTER binding
EventHandler handler = (EventHandler)Events[EventServerChange];
if (handler != null) handler(this, e);
}
/*
* Method of IPostBackDataHandler interface to process posted data.
* Checkbox determines the posted Checked state.
*/
///
bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection) {
return LoadPostData(postDataKey, postCollection);
}
///
protected virtual bool LoadPostData(string postDataKey, NameValueCollection postCollection) {
string post = postCollection[postDataKey];
bool newValue = !String.IsNullOrEmpty(post);
bool valueChanged = (newValue != Checked);
Checked = newValue;
if (newValue) {
ValidateEvent(postDataKey);
}
return valueChanged;
}
protected override void RenderAttributes(HtmlTextWriter writer) {
base.RenderAttributes(writer);
if (Page != null) {
Page.ClientScript.RegisterForEventValidation(RenderedNameAttribute);
}
}
/*
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
* Method of IPostBackDataHandler interface which is invoked whenever
* posted data for a control has changed. RadioButton fires an
* OnServerChange event.
*/
///
void IPostBackDataHandler.RaisePostDataChangedEvent() {
RaisePostDataChangedEvent();
}
///
protected virtual void RaisePostDataChangedEvent() {
OnServerChange(EventArgs.Empty);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* HtmlInputCheckBox.cs
*
* Copyright (c) 2000 Microsoft Corporation
*/
namespace System.Web.UI.HtmlControls {
using System.ComponentModel;
using System;
using System.Collections;
using System.Collections.Specialized;
using System.Globalization;
using System.Web;
using System.Web.UI;
using System.Security.Permissions;
///
///
/// The class defines the methods,
/// properties, and events for the HtmlInputCheckBox control. This class allows
/// programmatic access to the HTML <input type=
/// checkbox>
/// element on the server.
///
///
[
DefaultEvent("ServerChange"),
SupportsEventValidation,
]
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class HtmlInputCheckBox : HtmlInputControl, IPostBackDataHandler {
private static readonly object EventServerChange = new object();
/*
* Creates an intrinsic Html INPUT type=checkbox control.
*/
///
/// Initializes a new instance of a class.
///
public HtmlInputCheckBox() : base("checkbox") {
}
/*
* Checked property.
*/
///
/// Gets or sets a value indicating whether the checkbox is
/// currently selected.
///
[
WebCategory("Default"),
DefaultValue(""),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
TypeConverter(typeof(MinimizableAttributeTypeConverter))
]
public bool Checked {
get {
string s = Attributes["checked"];
return((s != null) ? (s.Equals("checked")) : false);
}
set {
if (value)
Attributes["checked"] = "checked";
else
Attributes["checked"] = null;
}
}
/*
* Adds an event handler for the OnServerChange event.
* value: New handler to install for this event.
*/
///
/// Occurs when
///
[
WebCategory("Action"),
WebSysDescription(SR.Control_OnServerCheckChanged)
]
public event EventHandler ServerChange {
add {
Events.AddHandler(EventServerChange, value);
}
remove {
Events.RemoveHandler(EventServerChange, value);
}
}
/*
* This method is invoked just prior to rendering.
*/
///
///
///
protected internal override void OnPreRender(EventArgs e) {
base.OnPreRender(e);
if (Page != null && !Disabled) {
Page.RegisterRequiresPostBack(this);
Page.RegisterEnabledControl(this);
}
// if no change handler, no need to save posted property unless
// we are disabled
if (Events[EventServerChange] == null && !Disabled) {
ViewState.SetItemDirty("checked",false);
}
}
/*
* Method used to raise the OnServerChange event.
*/
///
/// [To be supplied.]
///
protected virtual void OnServerChange(EventArgs e) {
// invoke delegates AFTER binding
EventHandler handler = (EventHandler)Events[EventServerChange];
if (handler != null) handler(this, e);
}
/*
* Method of IPostBackDataHandler interface to process posted data.
* Checkbox determines the posted Checked state.
*/
///
bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection) {
return LoadPostData(postDataKey, postCollection);
}
///
protected virtual bool LoadPostData(string postDataKey, NameValueCollection postCollection) {
string post = postCollection[postDataKey];
bool newValue = !String.IsNullOrEmpty(post);
bool valueChanged = (newValue != Checked);
Checked = newValue;
if (newValue) {
ValidateEvent(postDataKey);
}
return valueChanged;
}
protected override void RenderAttributes(HtmlTextWriter writer) {
base.RenderAttributes(writer);
if (Page != null) {
Page.ClientScript.RegisterForEventValidation(RenderedNameAttribute);
}
}
/*
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
* Method of IPostBackDataHandler interface which is invoked whenever
* posted data for a control has changed. RadioButton fires an
* OnServerChange event.
*/
///
void IPostBackDataHandler.RaisePostDataChangedEvent() {
RaisePostDataChangedEvent();
}
///
protected virtual void RaisePostDataChangedEvent() {
OnServerChange(EventArgs.Empty);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextBoxBase.cs
- DataServiceContext.cs
- BuildProvidersCompiler.cs
- PathFigureCollection.cs
- PeerMessageDispatcher.cs
- AuthenticationModuleElementCollection.cs
- RangeValuePatternIdentifiers.cs
- ComponentChangedEvent.cs
- XmlSerializationWriter.cs
- IntSecurity.cs
- VSDExceptions.cs
- RunInstallerAttribute.cs
- MatrixAnimationBase.cs
- TraceLog.cs
- WebPartMovingEventArgs.cs
- LinkUtilities.cs
- TargetControlTypeCache.cs
- SoapHeaders.cs
- CatalogPartChrome.cs
- SqlDataSourceView.cs
- InkCanvasAutomationPeer.cs
- InheritanceService.cs
- PartBasedPackageProperties.cs
- FocusTracker.cs
- FormsAuthenticationEventArgs.cs
- SemanticResolver.cs
- SessionPageStateSection.cs
- ToolStripButton.cs
- DiscreteKeyFrames.cs
- PopupControlService.cs
- Viewport2DVisual3D.cs
- MessageSmuggler.cs
- XdrBuilder.cs
- DataKeyArray.cs
- BaseValidatorDesigner.cs
- EnumBuilder.cs
- ReflectionHelper.cs
- ModulesEntry.cs
- FileSystemEventArgs.cs
- Win32Exception.cs
- ValueChangedEventManager.cs
- Keywords.cs
- SubMenuStyleCollection.cs
- ConfigurationValidatorBase.cs
- RoleManagerSection.cs
- RegexRunner.cs
- coordinatorfactory.cs
- DataRecordObjectView.cs
- TextServicesDisplayAttribute.cs
- TextStore.cs
- HttpFileCollection.cs
- CommandHelpers.cs
- Renderer.cs
- WrappedIUnknown.cs
- RowParagraph.cs
- FormViewDeletedEventArgs.cs
- UnknownBitmapEncoder.cs
- XmlProcessingInstruction.cs
- TreeViewHitTestInfo.cs
- HttpCachePolicyWrapper.cs
- SqlReorderer.cs
- CursorInteropHelper.cs
- TraceListener.cs
- CapabilitiesRule.cs
- Transform.cs
- translator.cs
- DateTimeConverter.cs
- QilExpression.cs
- commandenforcer.cs
- ColorComboBox.cs
- EventDescriptorCollection.cs
- WSSecurityPolicy12.cs
- SamlAuthenticationClaimResource.cs
- XmlNodeChangedEventArgs.cs
- SystemWebSectionGroup.cs
- PrintPreviewDialog.cs
- FunctionQuery.cs
- VectorAnimation.cs
- AvTraceDetails.cs
- XmlName.cs
- ModelVisual3D.cs
- DurationConverter.cs
- Method.cs
- GlobalizationSection.cs
- LayoutInformation.cs
- HitTestParameters.cs
- WebConvert.cs
- SecurityDescriptor.cs
- HashMembershipCondition.cs
- BindingsCollection.cs
- SmiContext.cs
- IntranetCredentialPolicy.cs
- SqlNodeAnnotation.cs
- Scene3D.cs
- ClientConfigurationSystem.cs
- clipboard.cs
- FileChangesMonitor.cs
- CTreeGenerator.cs
- AngleUtil.cs
- ExtenderProvidedPropertyAttribute.cs