Frequently used Software development tools for Project Managers, Developers, Analysts, Architects and Testers.
Planning and Implementation Tools
...
Version Control and Collaboration Tools
...
Testing and Defect Management Tools
...
:: Invite To Join Group ::
This article will show you how to read windows event log and display its content on ASP.NET page, based on user selection.
Following is the sample code to write to the windows event log and display the contents of user selected windows event log on ASP.NET page.
...
:: Invite To Join Group ::
This article will demonstrate how to verify that the email address provided by a user is a valid email address, using a sample code.
Introduction
Some times website owners need to allow users to get registered on their website or subscribe to newsletters on their website, by allowing users to provide their email addresses. But how would you verify that the user provided email addresses are genuine and valid, to avoid bounced email messages.
This article will demonstrate how to verify that the email address provided by a user is a valid email address, using a sample code.
Implementation
ASP.NET Provides Built-in DNS Resolving Support. DNS class from System.Net namespace can be used to resolve DNS hostnames into IP addresses. Using this class we could verify email addresses and ensure that the domain name specified by the user actually resolved to an existing domain name.
...
:: Invite To Join Group ::
This article will demonstrate how to read an xml file and retrieve xml element values in .Net using a sample Console application in C#.
Introduction
This is a Console application in .Net to read an xml file and retrieve xml element values.
This application will load the xml file from the provided file path, fetch all instances of the provided xml element from the xml file and then write the xml element values in a text file on your hard drive.
Attached are the source code and the EXE for this project for download.
Implementation
...
:: Invite To Join Group ::
This article will briefly introduce you to the Cookies in ASP.NET and how work with Cookies.
What is Cookies?
The Cookie is a collection of key/value pairs that hold text values set by a page in a web request. By default, the collection is empty. The cookie contains information the Web application can read whenever the user visits the website.
Following are few examples of how to work with Cookie collections in ASP .Net web applications.
...
:: Invite To Join Group ::