| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: RadioButton
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Collections;
- using System.Collections.Specialized;
- using System.Globalization;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public class RadioButton: CheckBox, IPostBackDataHandler
- {
- public RadioButton(): base()
- {
- }
- public virtual string GroupName
- {
- get
- {
- object o = ViewState["GroupName"];
- if(o != null)
- return (string)o;
- return String.Empty;
- }
- set
- {
- ViewState["GroupName"] = value;
- }
- }
- protected override void OnPreRender(EventArgs e)
- {
- base.OnPreRender(e);
- if(Page != null && Enabled && !Checked)
- {
- Page.RegisterRequiresPostBack(this);
- }
- if(GroupName.Length == 0)
- {
- GroupName = UniqueID;
- }
- }
- internal override void RenderInputTag(HtmlTextWriter writer, string id)
- {
- writer.AddAttribute(HtmlTextWriterAttribute.Id, id);
- writer.AddAttribute(HtmlTextWriterAttribute.Type, "radio");
- writer.AddAttribute(HtmlTextWriterAttribute.Name, UniqueGroupNamePrivate);
- writer.AddAttribute(HtmlTextWriterAttribute.Value, ValueAttributePrivate);
- if(Checked)
- {
- writer.AddAttribute(HtmlTextWriterAttribute.Checked, "checked");
- }
- if(AutoPostBack)
- {
- writer.AddAttribute(HtmlTextWriterAttribute.Onclick, Page.GetPostBackClientEvent(this, ""));
- writer.AddAttribute("language", "javascript");
- }
- if(AccessKey.Length > 0)
- {
- writer.AddAttribute(HtmlTextWriterAttribute.Accesskey, AccessKey);
- }
- if(TabIndex > 0)
- {
- writer.AddAttribute(HtmlTextWriterAttribute.Tabindex, TabIndex.ToString(NumberFormatInfo.InvariantInfo));
- }
- writer.RenderBeginTag(System.Web.UI.HtmlTextWriterTag.Input);
- writer.RenderEndTag();
- }
- private string UniqueGroupNamePrivate
- {
- get
- {
- string retVal = GroupName;
- if(UniqueID.LastIndexOf(":") >= 0)
- {
- retVal += UniqueID.Substring(UniqueID.LastIndexOf(":") + 1);
- }
- return retVal;
- }
- }
- private string ValueAttributePrivate
- {
- get
- {
- string retVal = Attributes["value"];
- if(retVal == null)
- {
- retVal = ID;
- }
- if(retVal == null)
- {
- retVal = UniqueID;
- }
- return retVal;
- }
- }
- bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection)
- {
- if(postCollection[UniqueGroupNamePrivate] != null && postCollection[UniqueGroupNamePrivate] == ValueAttributePrivate)
- {
- if(!Checked)
- {
- Checked = true;
- }
- return true;
- }
- if(Checked)
- {
- Checked = false;
- }
- return true;
- }
- void IPostBackDataHandler.RaisePostDataChangedEvent()
- {
- OnCheckedChanged(EventArgs.Empty);
- }
- }
- }
|