• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Dotnet Stuff

  • Home
  • Articles
  • Tutorials
  • Forums
  • Career Advice
  • Jobs
  • .NET FAQs
  • News
  • Privacy Policy

What is PCDATA In XML? | Parsed Character Data in XML

Parsed Character Data,PCDATA in XML: XML parsers are used to parse XML files. All parsers normally also parse the data inside the XML tag elements when the entire XML file is parsed.This parsing is needed since an XML tag element can contain other element tags also. So PCDATA, the Parsed Character Data is nothing special. […]

Encrypt ConnectionString in Web.config of ASP.NET

Normal practice is to store connection string(database, excel, etc.) of any web application in web.config file. But on security point of view placing the database connection string or any of that sort in a web.config file without encryption is not secure at all. So it is mandatory to protect the configurations like connection strings etc. […]

Redirect domain Without www to With www in ASP.NET, BlogEngine.NET

It is possible to access https://www.dotnetstuffs.com,  and http://dotnetstuffs.com from the server after we host the domain. The search engines consider it as 2 different sites. From an SEO standpoint, this will be considered duplicate content on the web, and search engines will penalize it. For quite some time, in my blog, there was the issue […]

Microsoft .NET 5.0 | Unified Platform .NET 5.0

The next version of.NET,  .NET 5.0, was published by Microsoft. in Nov, 2020 and the latest updated version is 5.0.17. DOTNET 5 will be such a unified platform that you will be able to create anything on it. Build, run, and deploy software that targets all platforms and devices, including PCs, web browsers, smartphones, tablets, […]

C# Pragma, The Inline warning control In C# | Compiler Directives C#

Pragma is a compiler directive in C#. This article explains on #pragma directives in C# and the various ways you can control the code analysis warnings that we get during the compilation of your .NET code. When we develop C# code, the compiler occasionally issues warnings. Warnings are generally ignored by programmers because they do […]

Properties With Multiple Access Modifiers in C# 2.0 | Asymmetric Accessor Accessibility

In C# the member variables will be exposed by means of Properties. The get and set portions of a property are called accessors. A normal property definition in C# is as below privateintproperty1; publicintProperty1 { get { returnproperty1; } set { property1 = value; } } Here the property is public and by default, the accessors […]

  • « Go to Previous Page
  • Go to page 1
  • Interim pages omitted …
  • Go to page 3
  • Go to page 4
  • Go to page 5
  • Go to page 6
  • Go to page 7
  • Interim pages omitted …
  • Go to page 14
  • Go to Next Page »

Primary Sidebar

Recent Posts

  • Performance optimization in C#
  • How to be an Efficient C# Coder?
  • Features of C#.NET
  • Features of C# 9.0
  • Features of C# 7.0
  • .NET 7 Feature – Native AOT Deployment
  • Application Load Balancers
  • .NET Core Version History | Release History of .NET Core
  • What is string interpolation in C#
  • What Is The Use Of Volatile Keyword In C#

Recent Forum Topics

  • What is the Difference Between IEnumerable and IQueryable in C#
  • How to remove Header of the XML file in C#?
  • What is DBMS?
  • What is RDBMS?
  • What is asp net framework ?

© Copywright 2017 Dotnetstuffs All Rights Reserved