AsyncPostBackTrigger.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. //
  2. // AsyncPostBackTrigger.cs
  3. //
  4. // Author:
  5. // Igor Zelmanovich <[email protected]>
  6. //
  7. // (C) 2007 Mainsoft, Inc. http://www.mainsoft.com
  8. //
  9. //
  10. // Permission is hereby granted, free of charge, to any person obtaining
  11. // a copy of this software and associated documentation files (the
  12. // "Software"), to deal in the Software without restriction, including
  13. // without limitation the rights to use, copy, modify, merge, publish,
  14. // distribute, sublicense, and/or sell copies of the Software, and to
  15. // permit persons to whom the Software is furnished to do so, subject to
  16. // the following conditions:
  17. //
  18. // The above copyright notice and this permission notice shall be
  19. // included in all copies or substantial portions of the Software.
  20. //
  21. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. //
  29. using System;
  30. using System.Collections.Generic;
  31. using System.Text;
  32. using System.ComponentModel;
  33. using System.Reflection;
  34. namespace System.Web.UI
  35. {
  36. public class AsyncPostBackTrigger : UpdatePanelControlTrigger
  37. {
  38. static readonly MethodInfo _eventHandler = typeof (AsyncPostBackTrigger).GetMethod ("OnEvent");
  39. string _eventName;
  40. public new string ControlID {
  41. get {
  42. return base.ControlID;
  43. }
  44. set {
  45. base.ControlID = value;
  46. }
  47. }
  48. [DefaultValue ("")]
  49. [Category ("Behavior")]
  50. public string EventName {
  51. get {
  52. if (_eventName == null)
  53. return String.Empty;
  54. return _eventName;
  55. }
  56. set {
  57. _eventName = value;
  58. }
  59. }
  60. protected internal override bool HasTriggered () {
  61. throw new NotImplementedException ();
  62. }
  63. protected internal override void Initialize () {
  64. Control c = FindTargetControl (false);
  65. ScriptManager sm = Owner.ScriptManager;
  66. string eventName = EventName;
  67. if (String.IsNullOrEmpty (eventName)) {
  68. object [] o = c.GetType ().GetCustomAttributes (typeof (DefaultEventAttribute), true);
  69. if (o.Length == 0)
  70. throw new InvalidOperationException (String.Format ("Control '{0}' has no default event defined", c.ID));
  71. eventName = ((DefaultEventAttribute) o [0]).Name;
  72. }
  73. EventInfo evi = c.GetType ().GetEvent (eventName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase);
  74. if (evi == null)
  75. throw new InvalidOperationException (String.Format ("Could not find an event named '{0}' on associated control '{1}' for the trigger in UpdatePanel '{2}'.", eventName, c.ID, Owner.ID));
  76. Delegate d = null;
  77. try {
  78. d = Delegate.CreateDelegate (evi.EventHandlerType, this, _eventHandler);
  79. }
  80. catch (ArgumentException) {
  81. throw new InvalidOperationException (String.Format ("The event '{0}' in '{1}' for the control '{2}' does not match a standard event handler signature.", eventName, c.GetType (), c.ID));
  82. }
  83. evi.AddEventHandler (c, d);
  84. sm.RegisterAsyncPostBackControl (c);
  85. }
  86. public void OnEvent (object sender, EventArgs e) {
  87. Owner.Update ();
  88. }
  89. public override string ToString () {
  90. return String.Format ("AsyncPostBack: {0}.{1}", ControlID, EventName);
  91. }
  92. }
  93. }