Hi there,
I'm searching for a possibility to pass a specific (error) text to the editform.aspx from a document library via the URL.
Example:
properties.RedirectUrl = @"EditForm.aspx?"
+ "Mode=Upload"
+ "&CheckInComment="
+ "&ID=" + properties.ListItem.ID
+ "&RootFolder=%2Fsites%2FSuppliers%2FLists%2FDocument%20Center"
+ "&IsDlg=1"
+ "&ContentTypeId=" + properties.ListItem.ContentType.Id
+ "&IsDlg=1";
Is there a Parameter for displaying an error message like error=youdidsomethingwrong?
I know, I could create a new (own) editform.aspx, but isn't there a standard parameter in the URL I could use?
Thanks in advance.
Dennis