| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /* System.Web.UI.HtmlControls
- * Authors
- * Leen Toelen ([email protected])
- */
- using System;
- using System.ComponentModel;
- using System.Globalization;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.HtmlControls{
-
- [DefaultEvent("ServerClick")]
- public class HtmlInputButton : HtmlInputControl, IPostBackEventHandler{
-
- private static readonly object EventServerClick = new object ();
-
- public HtmlInputButton(): base ("button")
- {
- }
-
- public HtmlInputButton(string type): base(type){}
-
- protected override void OnPreRender (EventArgs e)
- {
- base.OnPreRender(e);
- if (Page != null && Events [EventServerClick] != null)
- Page.RequiresPostBackScript ();
- }
- protected override void RenderAttributes (HtmlTextWriter writer)
- {
- if (Page != null && CausesValidation) {
- string type = Type;
- if (String.Compare (type, "button", true) == 0 || String.Compare (type, "submit", true) == 0) {
- string script = Page.GetPostBackClientEvent (this, String.Empty);
- if (script != null && Page.Validators.Count > 0){
- AttributeCollection coll = Attributes;
- if (coll ["language"] != null)
- coll.Remove ("language");
- writer.WriteAttribute ("language", "javascript");
- string onclick;
- if ((onclick = coll ["onclick"]) != null) {
- script = onclick + " " + script;
- coll.Remove ("onclick");
- }
-
- writer.WriteAttribute ("onclick", script);
- }
- }
- }
-
- base.RenderAttributes (writer);
- }
- protected virtual void OnServerClick(EventArgs e){
- EventHandler handler = (EventHandler) Events[EventServerClick];
- if (handler != null){
- handler (this, e);
- }
- }
-
- void IPostBackEventHandler.RaisePostBackEvent (string eventArgument)
- {
- if(CausesValidation == true){
- Page.Validate();
- }
- OnServerClick(EventArgs.Empty);
- }
-
- [WebCategory("Action")]
- [WebSysDescription("Fires when the control is clicked.")]
- public event EventHandler ServerClick{
- add{
- Events.AddHandler(EventServerClick, value);
- }
- remove{
- Events.RemoveHandler(EventServerClick, value);
- }
- }
-
- [DefaultValue(true)]
- [WebCategory("Behavior")]
- public bool CausesValidation{
- get{
- object causesVal = ViewState["CausesValidation"];
- if (causesVal != null){
- return (Boolean) causesVal;
- }
- return true;
- }
- set{
- ViewState["CausesValidation"] = (Boolean) value;
- }
- }
-
- } // end of System.Web.UI.HtmlControls.HtmlInputButton
- } // namespace System.Web.UI.HtmlControls
|