dotnetnuke,dotnetnuke-7,dotnetnuke-6,dotnetnuke-settings
I Installed a local version of the DNN 7.4 and then changes the webconfig file and now it works
dotnetnuke,dotnetnuke-module,dotnetnuke-5,dotnetnuke-settings
This solved it: http://stackoverflow.com/a/3831419/614263 Due to permission settings it looks like IIS was blocking requests from the root to javascripts and css files. When looking at the Network traffic in FireFox I noticed that 404 errors were coming from "login.aspx?ReturnURL=../../blahblah.css" Thanks for all your help and suggestions....
dotnetnuke,dotnetnuke-module,dotnetnuke-7,dotnetnuke-settings
You would do this using the ModuleActions call on your VIEW control public ModuleActionCollection ModuleActions { get { var actions = new ModuleActionCollection { { GetNextActionID(), Localization.GetString("EditModule", LocalResourceFile), "", "", "", EditUrl(), false, SecurityAccessLevel.Edit, true, false } }; return actions; } } The SecurityAccessLevel.Edit there, you have View, Edit, Admin,...