Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/7c8a6c74187feef0bcd6c2a407091c9a to your computer and use it in GitHub Desktop.
Save hbulens/7c8a6c74187feef0bcd6c2a407091c9a to your computer and use it in GitHub Desktop.
using(SPWeb web = site.OpenWeb())
{
try
{
web.AllowUnsafeUpdates = true;
}
catch
{
}
finally
{
web.AllowUnsafeUpdates = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment