Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/System.Web/UI/Control.cs')
-rw-r--r--mcs/class/referencesource/System.Web/UI/Control.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/referencesource/System.Web/UI/Control.cs b/mcs/class/referencesource/System.Web/UI/Control.cs
index b698ff6f310..7a21a881ad3 100644
--- a/mcs/class/referencesource/System.Web/UI/Control.cs
+++ b/mcs/class/referencesource/System.Web/UI/Control.cs
@@ -2719,7 +2719,7 @@ namespace System.Web.UI {
// But for control which requires its OnInit method to be called again
// to properly initialize when the control is removed and added back
// to Page's control tree, the control can override IsReloadable
- // to true so the control state is reset. e.g. Validator, see
+ // to true so the control state is reset. e.g. Validator, see bug
if (IsReloadable) {
_controlState = ControlState.Constructed;
}
@@ -3179,7 +3179,7 @@ namespace System.Web.UI {
internal Control FindControlFromPageIfNecessary(string id) {
Control c = FindControl(id);
// Find control from the page if it's a hierarchical ID.
- // Dev11
+ // Dev11 bug 19915
if (c == null && Page != null) {
char[] findControlSeparators = { ID_SEPARATOR, LEGACY_ID_SEPARATOR };
if (id.IndexOfAny(findControlSeparators) != -1) {