Developer forum

Forum » Development » ERROR! "testmodule" is an unknown module system name

ERROR! "testmodule" is an unknown module system name


Reply

Hi,

I have made a module which are connected on a paragraph. The module works fine in the backend but I get the following error in the front endERROR! "testmodule" is an unknown module system name

 

any suggestions to why this happens ?


Replies

 
Reply

Please make sure that your ModuleSystemName is correctly spelled and typed in lowercases in all places. Are you using the ContentModule or Default.aspx approach to register the module?

 
Reply
Sorensen wrote:

Please make sure that your ModuleSystemName is correctly spelled and typed in lowercases in all places. Are you using the ContentModule or Default.aspx approach to register the module?


 

I have added the following to the switch statement to the codebehind file of default.aspx

 

case "testmodule":

e.Output = "Hello fra testmodule";

break;


it seem like the codebehind file does not get compiled - what should I do?

 
Reply

I don't see why it shouldn't be compiled if the there's nothing wrong with the rest of your project. Try Response.Write("Something") some where in Default.aspx codebehind if you're not sure.

 

Please make sure that your module is registered as ModuleSystemName = testmodule in the Module table (in Dynamic.mdb if you're using ms access).

 

You must be logged in to post in the forum