Skip to main content

User control changes not update on the web

Somtimes it happens that just after i have created a new Dynamics Ax web site in Visual Studio and added some controls from the AOT to the project in VS, that changes done in VS are not updated in the AOT and therefore not displayed on the web.

I was a bit surprised that the solution is to right-click the user control in VS and select "Add to AOT". This ofcourse gives an error since the user control exists, but this restores the connection between VS and AX.

After this all changes are reflected directly in the EP page.

The ways of EP develpment works in misterious ways

Comments

  1. Hi,One I use to create pages from scratch, one I use to fix web pages that are messed up and the third one I use is one of the step by step software programs I spoke of earlier, that I use for Web Design Cochin pages that are not overly involved, it allows me to take web page design templates and turn them into a professional looking web page in just a couple hours, it's a great time saver.Thanks......

    ReplyDelete

Post a Comment

Popular posts from this blog

Dynamics 365 for operations – Table extensions

Background Extensions are a new way to add functionality and custom code to the D365 system without changing the standard code. In fact, Microsoft has announced that edit standard elements like those that we have done in the past will not be possible after 2017. By using extensions, we can achieve the same result by simply extending the standard system => EXTENSIONS. To read more about the difference between overlaying and extensions follow this link https://ax.help.dynamics.com/en/wiki/customization-overlayering-and-extensions/#extensions Extending tables By using table extensions, we can create a new table that adds new fields, field groups, indexes, mappings, relations, methods, subscribe to event handlers and more. When extending tables we need to follow the naming rule as such: <TABLENAME><_Extension> the compiler understands the _Extensions suffix and knows that the table in question is extending a table from the standard system. This gives us access ...

Remove HTML code from strings

When you work for example with the presentations DAX adds some HTML comment code to the text stored in the database. This can cause the text on the web to be displayed in incorrect format. This also takes up space in the database and makes the database file grow larger. <!--AXAPTA  MarginWidth="0" MarginHeight="0" WebletName="WebLet700062029" Type="WebPageWeblet" -->TEXT There is a nice X++ function: just call Web::stripHTML( string ), which will return the string without the HTML tags