Introducing Really Simple Syndication in ASP.NETWritten by Balaji
Introducing Really Simple Syndication in ASP.NETReally Simple Syndication (RSS) is an XML standard for declaring content entries for small content feeds. The RSS format has gained popularity over years due to its simplicity. The XML file formatted according to RSS specification is either found as a physical file or is obtained via a Web site that handles request and sends content over Internet to client. The RSS format is as given below The XML format for RSS declares that XML must have a root element of , which identifies document. This is shown in following sample snippet. The element contains one element and then many - elements that hold
element. -
Most of elements declared by RSS specification are optional. However, some elements need to be declared to make code functional. The element should contain following children: • Item (at least 1) • Title • Link • Description The - tag should contain
following children: • Title • Link • Description
| | Getting Started with Visual Studio.NetWritten by Balaji
Getting Started with Visual Studio.NetVisual Studio.Net is a comprehensive Integrated Development Environment (IDE) that is extensively used to develop ASP.Net web applications. In addition, it allows you to create standalone applications, mobile applications and eXtensible Markup Language (XML) Web Services. Visual Studio.Net provides a common platform to build, compile, and run an application. Visual Studio.Net comes with .Net Framework that allows you to install Common Language Runtime (CLR), class libraries, and ASP.NET. Visual Studio.Net has drag-and-drop capabilities for all controls that make it user-friendly. Visual Studio.Net comes in three editions: Professional, Enterprise Developer, and Enterprise Architect. The Professional edition helps you to easily build and deploy Windows, Web, and Mobile applications. The Professional edition, that has built-in ADO.NET and Visual Database Tools, provide support for creation of professional data-driven software. The Enterprise Developer allows you to use .NET Framework and Microsoft Windows Server 2003 to develop distributed applications with improved deployment capabilities, security, reliability, and performance. As Visual Studio.Net includes Common Language Runtime engine, applications in Visual Studio.Net are language independent and platform independent. You can program applications with languages such as Visual Basic.Net, Visual C#.Net, Visual C++.Net, and Visual J#.Net. In addition you can use languages such as COBOL, FORTRAN, Java, Eiffel, and Mercury in your applications. You can also use scripting languages such as VBScript and JavaScript.
|