Rss Feed Tutorial RSS is a standardized, XML-formatted means for syndication Web site content. The history of RSS can be traced back to the Resource Description Framework (RDF), a W3C standard…
JSON Introducing in ASP.Net XML has become the defacto standard for data transmission. In Ajax-based applications, XML can be accessed by the XMLHttpRequest object in XML format using the responseXML…
Remove HTML Tags from String Variable in C# Include System.Text.RegularExpressionspublic string Strip(string text){ return Regex.Replace(text, @”<(.|\n)*?>”, string.Empty);}String myArticle=Strip("<a…
What is Fields in ASP.Net C# Programming A field is a variable of any type that is declared directly in a class or struct. Fields are members of their containing type.A class or struct may have instance fields or static…
Assemblies and .NET security .NET Code Access Security is based on assemblies and evidence. Evidence can be anything deduced from the assembly, but typically it is created from the source of the assembly —…
What is Difference between NameSpace and Assembly? Following are the differences between namespace and assembly :
√ Assembly is physical grouping of logical units. Namespace logically groups classes.
√ Namespace can span multiple…
Import Directive in ASP.Net The @Import directive allows you to specify any namespaces to the imported to the Asp.Net pages or user controls. By importing, all the classes and interfaces of the namespace are…