Browse Source

2006-01-22 Chris Toshok <[email protected]>

	* HtmlInputButton.cs:
	s/GetPostBackClientEvent/GetPostBackEventReference.


svn path=/trunk/mcs/; revision=55916
Chris Toshok 20 years ago
parent
commit
96b3f40a2b

+ 5 - 0
mcs/class/System.Web/System.Web.UI.HtmlControls/ChangeLog

@@ -1,3 +1,8 @@
+2006-01-22  Chris Toshok  <[email protected]>
+
+	* HtmlInputButton.cs:
+	s/GetPostBackClientEvent/GetPostBackEventReference.
+
 2005-12-01 Gonzalo Paniagua Javier <[email protected]>
 
 	* HtmlTableRow.cs: Cells is virtual in latest 1.1.

+ 1 - 1
mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlInputButton.cs

@@ -167,7 +167,7 @@ namespace System.Web.UI.HtmlControls {
 				if (Page.AreValidatorsUplevel ()) {
 					oc = csm.GetClientValidationEvent ();
 				} else if (Events [ServerClickEvent] != null) {
-					oc = Attributes ["onclick"] + " " + csm.GetPostBackClientEvent (this, "");
+					oc = Attributes ["onclick"] + " " + csm.GetPostBackEventReference (this, "");
 				}
 				
 				if (oc != null) {