UniqueIdentifier parameters by default are coded like this
<
asp:Parameter Name="Original_EventID" Type="Object" />
The problem is that this cause the following error:
Implicit conversion from data type sql_variant to uniqueidentifier is not allowed. Use the CONVERT function to run this query.
To correct this simply remove the Type so it looks like this:
<asp:Parameter Name="Original_EventID" />