In this article we will explore how to generate the xml documentation in Visual Studio for our .NET code. Basically Every .NET assembly can contain the comments as documentation which we place after ‘///’(Triple slash) in our code. For example: If we write the following code in visual studio it gets assigned into assembly as [...]

In this article we will look into how to write a sql query to get a particular row in sql. Lets write the code to find 2nd row in a table named mcc_measures. So first we declare a temporary table No in this temp table we insertrow numbers of the table Now from the temp [...]

This post will throw a light on how we can update our status on Twitter from an asp.net application. The task is pretty simple as we have libraries already available on the net. I will be using twitterizer dll to perform the task. The following are the steps to be followed: Download the twitterizer dll [...]

Session states of the asp.net application can be easily saved into SQL Server using the following steps: Change the settings in the web.config file. In the database create the appropriate tables.It is done automatically wen we execute the exe aspnet_regsql.exe located at C:\WINDOWS\Microsoft.NET\Framework\v2.0. location

http://blogengine.codeplex.com/

Want to add a cool forum in your .net application? A forum where users can perform all the functions which are being used in the latest applications available till now? YetAnotherForum.NET An opensource project YetAnotherForum.NET is the answer to the questions raised above. YetAnotherForum.NET (YAF) is a Open Source discussion forum or bulletin board system [...]

Want to play MP3 files using C#.NET? Or want to introduce voice recording in your .net application? NAudio is the open source answer for these questions. OverView NAudio is an open source .NET audio and MIDI library, containing dozens of useful audio related classes intended to speed development of audio related utilities in .NET. NAudio [...]

Want to send an email from your .net application? Just use the following code and don’t forget to put in the valid SMTP server id in the code and your email will be sent.

Hashed passwords provide much better security than storing passwords in the database as simple text. They are, however, potentially vulnerable to a dictionary attack. In a dictionary attack, the attacker attempts to guess passwords by using software to iteratively hash all words in a large dictionary and compare the generated hashes to the stored hash [...]

Every application uses username and password to provide security to the systems. The way an application handles the storage of password defines the level of security provided by the application. The password should not be stored in the database as a string. Rather, it should be converted to an unrecognizable value that is unique for [...]