.net

51 items tagged with ".net"

50 Articles
1 Diagram

Articles

Resolve error MSB4126: The specified solution configuration "Debug|x64" is invalid

2024-05-19
.NET Programming

Install .NET 8 and 9 SDKs on a Non-System Drive

2024-04-28
.NET Programming

InvalidOperationException: A second operation was started on this context instance before a previous operation completed

2023-09-05
.NET Programming

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.

2022-08-09
Code Snippets & Tips

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.

2022-08-09
Code Snippets & Tips

Lucene.NET Exception on Azure - segments.* file not found in AzureDirectory

2022-06-01
Big Data Forum

Visual Studio Code: Debug ASP.NET Application with Hot Reload

2022-03-26
Tools & Systems

.NET Hot Reload in Visual Studio Code

2022-03-26
Tools & Systems

Load Fonts as Glyph in .NET

2022-03-26
.NET Programming

Cross-Platform .NET 6 Image Processing Libraries

2022-01-15
.NET Programming

.NET - Update EF Core Tools

2022-01-04
Code Snippets & Tips

Apache Ignite Installation on Windows

2022-01-03
The Data Engineering

Query JSON via JMESPath in .NET

2021-12-21
.NET Programming

.NET 6 Azure Functions Isolated: An error occurred while loading required library hostpolicy.dll

2021-11-15
Microsoft Azure

Azure Functions Error - 'System.OutOfMemoryException' was thrown

2021-10-15
Cloud Computing Forum

APPLICATIONINSIGHTS_CONNECTION_STRING or APPINSIGHTS_INSTRUMENTATIONKEY is defined but the Application Insights Extension is not installed

2021-10-15
Cloud Computing Forum

About --idempotent Flag in dotnet ef migrations script

2021-09-18
.NET Programming

.NET - Transform XML Data with XSLT

2021-09-11
.NET Programming

Port 7071 is unavailable. Close the process using that port, or specify another port using --port [-p]

2021-09-10
Microsoft Azure

The SMTP server requires a secure connection or the client was not authenticated

2021-09-05
Developer General Forum

Dependency Injection and Use appsettings.json in .NET 5 Azure Functions

2021-08-24
Microsoft Azure

Create Blob Triggered Azure Functions using .NET 5

2021-08-24
Microsoft Azure

C#: Base64 URL Encoder and Decoder

2021-08-24
Code Snippets & Tips

Fix Error CryptographicException: The payload was invalid.

2021-08-24
.NET Programming

Fix .NET 5 Azure Functions Build Error on Azure DevOps

2021-08-21
Microsoft Azure

C# 10.0 New Features

2021-08-14
C# Programming

Read Embedded Assembly Resource Files in .NET

2021-08-13
.NET Programming

EntityFramework Core: Generate Migration Scripts in a Separate Project

2021-05-15
.NET Programming

The Entity Framework tools version '3.1.7' is older than that of the runtime '5.0.3'.

2021-03-08
.NET Programming

Draw Images in ASP.NET Core 5

2021-02-16
ASP.NET Core

EntityFramework Core - Update Only One Field

2021-02-14
.NET Programming

EntityFramework Core - Connect to MySQL

2021-01-23
.NET Programming

Connect to MySQL in .NET 5

2021-01-23
.NET Programming

Get IP Address in ASP.NET Core 5

2021-01-16
ASP.NET Core

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.

2020-12-23
.NET Programming

Run .NET 5 on Azure App Services

2020-10-24
Microsoft Azure

.NET Standard for C# 9.0

2020-09-28
.NET Programming

C# 9.0 New Features

2020-09-24
C# Programming

Introduction to C# Interactive

2020-09-24
C# Programming

LINQ to SQL - Select N Random Records

2020-09-22
.NET Programming

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.

2019-11-18
Code Snippets & Tips

.NET for Apache Spark Preview with Examples

2019-04-26
Spark & PySpark

LINQ SQL to Teradata

2015-06-16
C# Programming

[C#] Connect to Teradata Database via .NET Data Provider

2015-05-28
Teradata

Build Online Product Management Website using MVC 3 + Entity Framework + SQL Server

2014-06-07
SQL Server

浅谈正则表达式匹配嵌套HTML标签

2010-06-09
.NET Programming

在.Net中使用msxsl:script脚本块扩展XSLT的具体实践与应用

一概述 XSLT可以用于将XML格式的数据转换为其它格式,在数据和展示分开以及数据相互转换中可以得到广泛的应用,比较典型的是以前的动网论坛模板系统以及动易的标签系统。掌握好XSLT可以灵活的处理XML,同时运用在Web应用程序中也非常的方便,不过缺点是使用者需要掌握大量的XPath、XSLT、XML等相关知识。

2010-02-23
Frontend & JavaScript

Socket通信中文字符乱码问题解决方法

2009-05-13
.NET Programming

如何用TcpListener监听本机的多个IP地址

2009-05-13
.NET Programming

.NET Remoting 基础学习教程(一)

.NET Remoting 可以用于处理激活、分布式验证、生存期和调用环境等方面的工作。它与Xml Web Service不同,在Xml Web Service中对象是抽象的,客户部需要知道服务器对象的类型,且与.net Remoting 不同,它是独立于平台的。.net Remoting 可以用于访问另一个应用程序域中的对象,无论两者处于同一进程还是不同的进程或者不同的系统中,都可以进行相互间的访问。示意图如下:

2009-05-09
.NET Programming

Diagrams