Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. if (WebPartManager.DisplayMode != WebPartManager.BrowseDisplayMode)
  2. {
  3. foreach (var validator in Controls)
  4. {
  5. if (validator is BaseValidator)
  6. {
  7. ((BaseValidator)validator).Enabled = false;
  8. }
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement