.net
36 items tagged with ".net"
Articles
Resolve error MSB4126: The specified solution configuration "Debug|x64" is invalid
Install .NET 8 and 9 SDKs on a Non-System Drive
InvalidOperationException: A second operation was started on this context instance before a previous operation completed
Clean out All Style Attributes using HTML Agility Pack .NET
HTML Agility Pack (HAP) is one of the most commonly used .NET package to parse HTML. It creates a document object model in memory, which can be use to manipulate the nodes (including both elements and attributes). The package can be added to your project from NuGet via the following CLI: `` dotnet add package HtmlAgilityPack --version 1.11.43 ` This code snippet provides one example of using this HAP to remove all style `attributes. The script can be run as C# script. For more details, refer to Html Agility Pack.
HTML Parsing using HTML Agility Pack .NET
HTML Agility Pack (HAP) is one of the most commonly used .NET package to parse HTML. It creates a document object model in memory, which can be use to manipulate the nodes (including both elements and attributes). The package can be added to your project from NuGet via the following CLI: `` dotnet add package HtmlAgilityPack --version 1.11.43 ` This code snippet provides one example of using this HAP to remove all script `elements. The script can be run as C# script. For more details, refer to Html Agility Pack.
Visual Studio Code: Debug ASP.NET Application with Hot Reload
.NET Hot Reload in Visual Studio Code
Load Fonts as Glyph in .NET
Cross-Platform .NET 6 Image Processing Libraries
.NET - Update EF Core Tools
Apache Ignite Installation on Windows
Query JSON via JMESPath in .NET
About --idempotent Flag in dotnet ef migrations script
.NET - Transform XML Data with XSLT
Port 7071 is unavailable. Close the process using that port, or specify another port using --port [-p]
Dependency Injection and Use appsettings.json in .NET 5 Azure Functions
C#: Base64 URL Encoder and Decoder
Fix Error CryptographicException: The payload was invalid.
Read Embedded Assembly Resource Files in .NET
EntityFramework Core: Generate Migration Scripts in a Separate Project
The Entity Framework tools version '3.1.7' is older than that of the runtime '5.0.3'.
Draw Images in ASP.NET Core 5
EntityFramework Core - Update Only One Field
EntityFramework Core - Connect to MySQL
Get IP Address in ASP.NET Core 5
.NET Standard for C# 9.0
Introduction to C# Interactive
LINQ to SQL - Select N Random Records
Read and parse JSON in C# / .NET Framework
JSON is commonly used in modern applications for data storage and transfers. Pretty much all programming languages provide APIs to parse JSON.
.NET for Apache Spark Preview with Examples
LINQ SQL to Teradata
[C#] Connect to Teradata Database via .NET Data Provider
浅谈正则表达式匹配嵌套HTML标签
在.Net中使用msxsl:script脚本块扩展XSLT的具体实践与应用
一概述 XSLT可以用于将XML格式的数据转换为其它格式,在数据和展示分开以及数据相互转换中可以得到广泛的应用,比较典型的是以前的动网论坛模板系统以及动易的标签系统。掌握好XSLT可以灵活的处理XML,同时运用在Web应用程序中也非常的方便,不过缺点是使用者需要掌握大量的XPath、XSLT、XML等相关知识。