I've built a custom section that i built from Tims custom section pack. When i had done a few changes i wanted to change the name of the section, namespace and such. Most things are still working but now im getting this error when i create new nodes. it appears after ive filled in the name for the new node and clicked create (shows inside the popup dialog.) So is there any common reason for getting this here? I thought it was the type in the UI.xml but im pretty sure its correct.
Value cannot be null. Parameter name: type
Description: An unhandled exception occurred during
the execution of the current web request. Please review the stack trace
for more information about the error and where it originated in the
code.
Exception Details: System.ArgumentNullException:
Value cannot be null. Parameter name: type
Source Error:
An unhandled exception was generated during the execution of the current
web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
Error when creating node in custom section.
I've built a custom section that i built from Tims custom section pack. When i had done a few changes i wanted to change the name of the section, namespace and such. Most things are still working but now im getting this error when i create new nodes. it appears after ive filled in the name for the new node and clicked create (shows inside the popup dialog.) So is there any common reason for getting this here? I thought it was the type in the UI.xml but im pretty sure its correct.
Value cannot be null.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Parameter name: type
Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: type
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
You're pretty sure, or you're 100% sure?
The error is that .NET is unable to locate the type specified, which results in a null being passed into Activator.CreateInstance.
Well now that i knew that was it i looked further into it and noticed i hadnt changed my namespace correctly. Thanks.
is working on a reply...