Iam creating site programmaticallyiam getting the following errorUpdates are currently disallowed on GET requests. To allow updates on a GET, set the 'AllowUnsafeUpdates' property on SPWeb.pls slove this error.
Well you can have the below coding and try,web.AllowUnsafeUpdates =true;This will enable the unsafe the updates. Once done with the update you can set it to false again.
You must use the web service or perform the creation in a POST operation.Using AllowUnsafeUpdates will not work for creating sites.