| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- //
- // System.Web.UI.WebControls.LinkButton.cs
- //
- // Authors:
- // Gaurav Vaish ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (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</{0}: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);
- }
- }
- }
|