One of the immediate reasons that come to mind may have removed the βpartialβ from NIITS.designer.cs or NIITS.cs. This will force the compiler to believe that you do not have two files of the partial class, but two separate classes with the same name.
Basically, find your files for the / ... classes that create the "NIITS" entry in your "fig" namespace. This can happen if, for example, when you have a class fig.NIITS and try to create a class fig.NIITS. In any case, the "NIITS" part is already used as the class name, and this cannot be resolved if you mean the NIITS class or the "NIITS" namespace.
It is not true that you receive this error message when you try to create an ASPX template file. I expected this to not happen in files that do not contain elements to be installed in the namespace. But with a code file (or a similar class file) this may be the reason.
source share