Hi Im trying to set up a DW 9.9.2 impementation as an MVC install following this document:
http://doc.dynamicweb-cms.com/Files/Files/Forum/Upload/Thread45665/Message46778/Setting_up_Dynamicweb_with_MVC.docx
Unfortunately I get this in VS. All References and .dlls are in place in the solution:
The type or namespace name 'PageviewControl' does not exist in the namespace 'Dynamicweb.Frontend' (are you missing an assembly reference?)
using System;
namespace Dynamicweb10MVC
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Output.Controls.Add(new Dynamicweb.Frontend.PageviewControl());
}
}
}
Any ideas why this does not work?