Questions tagged [n2cms]

N2CMS is a lightweight open source content management system that runs on top of ASP.NET.

N2CMS is a lightweight CMS framework. With just a few strokes of your keyboard a wonderful strongly-typed model emerges complete with a management UI. You can spend the rest of your day building the best site imaginable.

With N2CMS, you build the model of the data that needs to be managed using C# or VB code in Visual Studio. The type below is picked up by the N2 engine at runtime and made available to be edited. The code uses an open API with multiple built-in options and unlimited customization options.

83 questions
13
votes
5 answers

TinyMCE - Completely disable validation

I'm using N2CMS which in turn uses TinyMCE to edit HTML content. what i need to do is disable the TinyMCE HTML validation completely. Its stripping out anything out that doesn't adhere to its settings. If I add a custom attribute
JGilmartin
  • 8,683
  • 14
  • 66
  • 85
10
votes
3 answers

integrate CMS with an existing ASP.NET web site

I am trying to integrate a CMS into an existing ASP.NET Web site built with .aspx files and .aspx.cs code behind files (not compiled). My research indicated that my best candidate is N2 CMS. My ideal approach is to configure the editor with various…
Variant
  • 17,279
  • 4
  • 40
  • 65
6
votes
7 answers

Best CMS to use on Windows Azure

I've just started a new software consultancy business and I'm currently putting together designs for my website. We will be at a stage very soon to start converting these into a template for a CMS. I have used http://n2cms.com before, but my…
Ash
  • 754
  • 1
  • 10
  • 18
3
votes
2 answers

MsDeploy Virtual Directory gets converted to Virtual Application on deploy

For my CMS to work properly it needs to be deployed to a virtual directory underneath the www root so it can access (via reflection) the website to manage (note: CMS = N2CMS). When using Visual Studio 'Publish To Web' all is fine. But when I…
Mark van Straten
  • 9,287
  • 3
  • 38
  • 57
3
votes
1 answer

N2CMS TinyMCE filter_allowed_protocols for skype:{user}?call

I am using N2CMS (2.2.1.1) and I have a simple TextPart that I am trying to enter a skype button into which contains a link with the following url ( skype:{user}?call ). I am entering this into the "HTML" editor (not the wysiwyg editor) and every…
Robin
  • 1,074
  • 8
  • 29
3
votes
3 answers

Evaluate Asp.Net Enterprise CMS (Sitefinity vs N2CMS)

We are looking for a Asp.net CMS to integrate in our existing Enterprise-Webapplication. Some requirements: Full integration in Visual Studio 2010 and our existing Application (so no Umbraco) Common ASP.NET Web Forms Developing practices…
LuckyStrike
  • 1,483
  • 3
  • 12
  • 23
3
votes
1 answer

N2 CMS: Are nested collections of ContentItems possible?

Can an arbitrary number of ContentItems of the same class to be added to a page in N2? And can they be nested? I.e. Is there a way to define a collection of ContentItems as a property in N2? I’d also like to nest these if possible so we can run more…
Sam Salisbury
  • 1,066
  • 11
  • 19
3
votes
1 answer

N2 for MVC - how to get Zones working?

I'm looking at the N2 CMS Minimal Example for MVC (from here) I've figured out most of it, but I see that N2 supports 'Parts' that you can drop into 'Zones'. How do I get Zones and Parts working in the minimal example? The Html.Zone() command…
codeulike
  • 22,514
  • 29
  • 120
  • 167
3
votes
1 answer

N2CMS: restricting the number of ContentItems of a certain type below another ContentItem

I'm using N2CMS, and I have two classes that inherit from ContentItem - say HomePage and NewsPage. NewsPage is set to only appear under HomePage (using the RestrictParents attribute): [RestrictParents(typeof(HomePage))] Can I make it so there is a…
Tom Bull
  • 1,189
  • 13
  • 17
2
votes
1 answer

How do I update the database schema in N2 after adding Persistable property

I'm building my first N2 site, mostly by copying bits and pieces from the N2 Dinamico site and the MVC example site. I'm adding two properties to my ContentPage class: [EditableText] [Persistable(Length = 1024)] // to minimize select+1 …
Carl Raymond
  • 4,429
  • 2
  • 25
  • 39
2
votes
1 answer

N2 Customize Login Logic

We have a need to customize the logic of our N2 authentication to add a couple of options. I need to add a RadioButtonList that contains some options and set a session var based on the selection of that RadioButton on Login - otherwise the user…
Robin
  • 1,074
  • 8
  • 29
2
votes
1 answer

Create Web Forms N2 CMS App Based on N2 Templates

I have gone through the N2 CMS documentation at length and can see no obvious set of steps to accomplish this. The task is to create a new Web Forms CMS app based on N2. Basically to take the Stripes theme and customize it. I originally downloaded…
IrishChieftain
  • 15,108
  • 7
  • 50
  • 91
2
votes
0 answers

N2CMS Publish button is missing

I am using the latest bits from Nuget, and after successfully installing and creating a root and start page node, when I edit the start page content I do not see the publish button? In addition which could be unrelated, I'm unable to create new…
Ryan Fisch
  • 2,614
  • 5
  • 36
  • 57
1
vote
1 answer

custom navigation using N2CMS, MVC3

I need to create a dynamically generated menu for an E-Commerce web site. It would be horizontal or vertical or both using N2CMS. I have tried to use TopMenu but could not go far. Has anyone implemented like this using N2CMS, MVC ? ANy help or…
Furqan
  • 66
  • 6
1
vote
1 answer

N2CMS MVC3 Html.DroppableZone Renders Full Layout

I have the following in my project (MVC3) N2CMS 2.2.1 (from nuget). I am able to edit the main page using the "manage parts" functionality and drag an image part onto the page and set it's content. However, when it renders the page it renders my…
Robin
  • 1,074
  • 8
  • 29
1
2 3 4 5 6