hi all,
I have developed an event handler (itemadded syncronuos) for a library. i need to populate title field
public override void ItemAdded(SPItemEventProperties properties)
{
base.ItemAdded(properties);
properties.ListItem["Title"] = "some value"
properties.ListItem.SystemUpdate();
}
I have deployed the same feature to 2 environments -> Dev Env, Test Env.when I copy and paste a pdf file with "Open with explorer" in Dev Env it works fine.
when I do the same in Test Env i can't copy the file and i get this error:
Error 0x80070057: the parameter is incorrect.
I see this in my Event Viewer
The description for Event ID 14901 from source WebClient cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
If the event originated on another computer, the display information had to be saved with the event.
Could you help me?
Thanks.