Hi,
HTML/HTM files no longer load after update.
.Net Framework 4.7.2
Thanks
Hi,
HTML/HTM files no longer load after update.
.Net Framework 4.7.2
Thanks
@it1,
Thank you for reaching out. To better assist you, could you please provide a sample project where we can replicate the issue? Additionally, please include example HTML/HTM files that are not loading after the update.
This will help us investigate the issue more efficiently and provide a solution.
error.png (23.4 KB)
Hi,
I able to reproduce this error on the sample project supplied by you. The page in error is Viewer.aspx.
You can use any html/htm file.
@it1,
Thank you for the additional information. Based on what you’ve provided, you need to review your web.config
file. Since Doconut version 25.2.0 updated System.Text.Json to version 8.0.5, you have to update the dependentAssembly
node as shown below, unless NuGet Manager has already done so automatically:
<dependentAssembly>
<assemblyIdentity name="System.Text.Json" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.5" newVersion="8.0.0.5" />
</dependentAssembly>
In the future, please review the What’s New section in the Doconut Manual PDF or check our online documentation at https://doconut.com/documentation/setup/ for any updates or configuration changes relevant to your projects.
Let us know if you need further assistance.