Skip to main content

Posts

Showing posts from July, 2013

Hiding Data in Wave Audio Files

Now that we have hidden data in bitmaps, MIDI tracks and .NET assemblies, you might miss one important file format. You might miss the files that can hide lots of bytes without becoming larger, and can be generated in a few seconds, so that you don't have to store the original files on your disk. It is time to add Wave Audio to the list. Refered link

Configure SQL Server Database Mail to send emails from your account

If you are using SQL Server 2005 or higher, you might have noticed that there is now a  “Database Mail”  (DB Mail) option under  “Management” . This is very different from the  “SQL Mail”  that we had on previous versions (it still exists under Management\Legacy). Using DB Mail, you no longer have to configure a mailbox on your machine, and you certainly do not need to run the SQL Server or the SQL Server Agent under the account you want to send emails from. Moreover, you can have multiple mail profiles and you can decide which account to use under various conditions.

Basic operations Insert, Update and Delete of Data from SQL Server in ASP.NET MVC

ASP.NET provides the MVC framework as an alternate to the ASP.NET Web Forms pattern for developing web applications. MVC (Model-View-Controller) is a lightweight, highly testable presentation framework that is integrated with the existing ASP.NET features such as Master Pages and Membership-based authentication.