// // System.Web.UI.WebControls.LinkButton.cs // // Authors: // Gaurav Vaish (gvaish@iitk.ac.in) // Andreas Nahr (ClassDevelopment@A-SoftTech.com) // // (C) Gaurav Vaish (2002) // (C) 2003 Andreas Nahr // // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // using System; using System.Web; using System.Web.UI; using System.ComponentModel; using System.ComponentModel.Design; namespace System.Web.UI.WebControls { [DefaultEvent("Click")] [DefaultProperty("Text")] [ControlBuilder(typeof(LinkButtonControlBuilder))] [Designer("System.Web.UI.Design.WebControls.LinkButtonDesigner, " + Consts.AssemblySystem_Design, typeof (IDesigner))] [DataBindingHandler("System.Web.UI.Design.TextDataBindingHandler, " + Consts.AssemblySystem_Design)] [ParseChildren(false)] [ToolboxData("<{0}:LinkButton runat=\"server\">LinkButton")] public class LinkButton : WebControl, IPostBackEventHandler { private static readonly object ClickEvent = new object(); private static readonly object CommandEvent = new object(); public LinkButton () : base (HtmlTextWriterTag.A) { } [DefaultValue (true), Bindable (false), WebCategory ("Behavior")] [WebSysDescription ("Determines if validation is performed when clicked.")] public bool CausesValidation { get { object o = ViewState ["CausesValidation"]; return (o == null) ? true : (bool) o; } set { ViewState ["CausesValidation"] = value; } } [DefaultValue (""), Bindable (true), WebCategory ("Behavior")] [WebSysDescription ("An argument for the Command of this control.")] public string CommandArgument { get { object o = ViewState ["CommandArgument"]; return (o == null) ? String.Empty : (string) o; } set { ViewState ["CommandArgument"] = value; } } [DefaultValue (""), WebCategory ("Behavior")] [WebSysDescription ("The name of the Command of this control.")] public string CommandName { get { object o = ViewState ["CommandName"]; return (o == null) ? String.Empty : (string) o; } set { ViewState ["CommandName"] = value; } } [DefaultValue (""), Bindable (true), WebCategory ("Appearance")] [PersistenceMode (PersistenceMode.InnerDefaultProperty)] [WebSysDescription ("The text that should be shown on this LinkButton.")] public virtual string Text { get { object o = ViewState ["Text"]; return (o == null) ? String.Empty : (string) o; } set { ViewState ["Text"] = value; } } [WebCategory ("Action")] [WebSysDescription ("Raised when the LinkButton is clicked.")] public event EventHandler Click { add { Events.AddHandler(ClickEvent, value); } remove { Events.RemoveHandler(ClickEvent, value); } } [WebCategory ("Action")] [WebSysDescription ("Raised when a LinkButton Command is executed.")] public event CommandEventHandler Command { add { Events.AddHandler(CommandEvent, value); } remove { Events.RemoveHandler(CommandEvent, value); } } protected virtual void OnClick (EventArgs e) { if(Events != null){ EventHandler eh = (EventHandler) (Events [ClickEvent]); if (eh != null) eh (this, e); } } protected virtual void OnCommand (CommandEventArgs e) { if(Events != null){ CommandEventHandler ceh = (CommandEventHandler) (Events [CommandEvent]); if (ceh != null) ceh (this, e); } RaiseBubbleEvent (this, e); } protected override void OnPreRender (EventArgs e) { base.OnPreRender(e); } void IPostBackEventHandler.RaisePostBackEvent (string eventArgument) { if (CausesValidation) Page.Validate (); OnClick (EventArgs.Empty); OnCommand (new CommandEventArgs (CommandName, CommandArgument)); } protected override void AddAttributesToRender (HtmlTextWriter writer) { base.AddAttributesToRender (writer); if (Enabled && Page != null){ if (CausesValidation && Page.Validators.Count > 0){ writer.AddAttribute (HtmlTextWriterAttribute.Href, "javascript:" + Utils.GetClientValidatedPostBack (this)); return; } writer.AddAttribute (HtmlTextWriterAttribute.Href, Page.GetPostBackClientHyperlink (this, "")); } } protected override void AddParsedSubObject (object obj) { if (HasControls ()){ base.AddParsedSubObject (obj); return; } if (obj is LiteralControl){ Text = ((LiteralControl) obj).Text; return; } if (Text.Length > 0){ base.AddParsedSubObject (new LiteralControl (Text)); Text = String.Empty; } base.AddParsedSubObject (obj); } protected override void LoadViewState (object savedState) { if (savedState != null){ base.LoadViewState (savedState); string savedText = (string) ViewState ["Text"]; if (savedText != null) Text = savedText; } } protected override void RenderContents (HtmlTextWriter writer) { if (HasControls ()){ base.RenderContents (writer); return; } writer.Write (Text); } } }