.net
51 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.
Lucene.NET Exception on Azure - segments.* file not found in AzureDirectory
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
.NET 6 Azure Functions Isolated: An error occurred while loading required library hostpolicy.dll
Azure Functions Error - 'System.OutOfMemoryException' was thrown
APPLICATIONINSIGHTS_CONNECTION_STRING or APPINSIGHTS_INSTRUMENTATIONKEY is defined but the Application Insights Extension is not installed
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]
The SMTP server requires a secure connection or the client was not authenticated
Dependency Injection and Use appsettings.json in .NET 5 Azure Functions
Create Blob Triggered Azure Functions using .NET 5
C#: Base64 URL Encoder and Decoder
Fix Error CryptographicException: The payload was invalid.
Fix .NET 5 Azure Functions Build Error on Azure DevOps
C# 10.0 New Features
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
Connect to MySQL in .NET 5
Get IP Address in ASP.NET Core 5
Get Started on .NET 5 with Apache Spark
.NET for Apache Spark 1.0 was officially released on 14th Oct 2020. This version was released together with .NET Core 3.0. Since .NET for Apache Spark is written with .NET Standards, it should work with .NET 5 too. This articles how to use .NET 5 with Apache Spark.
Run .NET 5 on Azure App Services
.NET Standard for C# 9.0
C# 9.0 New Features
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
Build Online Product Management Website using MVC 3 + Entity Framework + SQL Server
浅谈正则表达式匹配嵌套HTML标签
在.Net中使用msxsl:script脚本块扩展XSLT的具体实践与应用
一概述 XSLT可以用于将XML格式的数据转换为其它格式,在数据和展示分开以及数据相互转换中可以得到广泛的应用,比较典型的是以前的动网论坛模板系统以及动易的标签系统。掌握好XSLT可以灵活的处理XML,同时运用在Web应用程序中也非常的方便,不过缺点是使用者需要掌握大量的XPath、XSLT、XML等相关知识。
Socket通信中文字符乱码问题解决方法
如何用TcpListener监听本机的多个IP地址
.NET Remoting 基础学习教程(一)
.NET Remoting 可以用于处理激活、分布式验证、生存期和调用环境等方面的工作。它与Xml Web Service不同,在Xml Web Service中对象是抽象的,客户部需要知道服务器对象的类型,且与.net Remoting 不同,它是独立于平台的。.net Remoting 可以用于访问另一个应用程序域中的对象,无论两者处于同一进程还是不同的进程或者不同的系统中,都可以进行相互间的访问。示意图如下: