How to load an XSLT file from a string in ASP.NET Core?
In the full version of the .NET Framework, I can use:
XslCompiledTransform objXSLTransform = new XslCompiledTransform(); objXSLTransform.Load(strXSLTFile);
As I mentioned here , you need to upgrade the application .NET Core 1.xto.NET Core 2.0 because it .NET Core 2.0implements .NET Standard 2.0that supports the namespace System.Xml.Xsl. And you can use again XslCompiledTransform.
.NET Core 1.x
.NET Core 2.0
.NET Standard 2.0
System.Xml.Xsl
XslCompiledTransform
Source: https://habr.com/ru/post/1674545/More articles:Multiple WordPress sites with one shared database using Docker - mysqlCell Swap Centering UICollectionView - iosflyway - repeating scenarios do not repeat - javaIonic 3 ссылается на новую страницу в выпуске модуля приложения - angularangular 2 form elements as components - validation does not work - angularКак преобразовать XML в HTML с XSLT в С#? - c#Is SUAVE ready for web application development with millions of user traffic? - f #Can I run cloudql-proxy as a Daemon suite in Kubernetes? - google-container-engineRegex separates thousands with commas and stores two decimal places - javascriptМассив Shuffle Python, который имеет очень мало нулей (очень sparsey) - pythonAll Articles