Просмотр исходного кода

2006-12-31 Igor Zelmanovich <[email protected]>

	* Page.cs: fixed: EventValidation is not performed for CallBack request.


svn path=/trunk/mcs/; revision=70282
Igor Zelmanovich 19 лет назад
Родитель
Сommit
0380ac6627

+ 4 - 0
mcs/class/System.Web/System.Web.UI/ChangeLog

@@ -1,3 +1,7 @@
+2006-12-31 Igor Zelmanovich <[email protected]>
+
+	* Page.cs: fixed: EventValidation is not performed for CallBack request.
+
 2006-12-27 Igor Zelmanovich <[email protected]>
 
 	* Page.cs: fixed: RegisterRequiresPostBack feature.

+ 0 - 2
mcs/class/System.Web/System.Web.UI/Page.cs

@@ -1827,8 +1827,6 @@ return true;
 			throw new HttpException (string.Format ("Invalid callback target '{0}'.", callbackTarget));
 
 		string callbackArgument = _requestValueCollection [CallbackArgumentID];
-		if (CheckForValidationSupport (targetControl))
-			scriptManager.ValidateEvent (targetControl.UniqueID, callbackArgument);
 		target.RaiseCallbackEvent (callbackArgument);
 		return target.GetCallbackResult ();
 	}