Skip to content

Commit

Permalink
[asp.net] Fix for bug #636709. ClientID must be reset when ID is assi…
Browse files Browse the repository at this point in the history
…gned.
  • Loading branch information
grendello committed Sep 7, 2010
1 parent a8c3708 commit db99ceb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mcs/class/System.Web/System.Web.UI/Control.cs
Original file line number Diff line number Diff line change
Expand Up @@ -821,6 +821,8 @@ void NullifyUniqueID ()
uniqueID = null;
#if NET_4_0
ClearCachedClientID ();
#else
clientID = null;
#endif
if (!HasControls ())
return;
Expand Down

0 comments on commit db99ceb

Please sign in to comment.