I have a webforms app that uses asp.net controls and devexpress controls. The page is already converted to use the DotMVVM "dot" prefix instead of "asp" and I need to adjust also the "dx" prefix for all the DevExpress controls.
In the original webforms page the registry was done on the top of the page using:
<%@ Register Assembly="DevExpress.Web.v19.1, Version=19.1.9.0, Culture=neutral, PublicKeyToken=XXXXXXXXXXXX" Namespace="**DevExpress**.Web" TagPrefix="**dx**" %>
The controls appear in the aspx code like this:
<**dx**:ASPxRibbon ID="ribbon" ...
But now, it must be adjusted to be used in the DotVVM context. How?
Already tryed to register the component in the web.config file:
<pages> <controls> <add assembly="DevExpress.Web.v19.1, Version=19.1.9.0, Culture=neutral, PublicKeyToken=XXXXXXX" namespace="**DevExpress.Web**" tagPrefix="**dx**"/> </controls> </pages>
Unfortunately, DotVVM cannot use components developed for ASP.NET Web Forms - it is a completely different framework with different control model.
Please let us know what is your scenario at Gitter chat - we'll be happy to help.