Note: Most of the Article of this blog has taken from another reputated blogs,Websites so Author will not responsible for any Issue.

How to configure dbmail in sql server 2005 and 2008

Step 1) Create Profile and Account:You need to create a profile and account using the Configure Database Mail Wizard which can be accessed from the Configure Database Mail context menu of the Database Mail node in Management Node. This wizard is used to manage accounts, profiles, and Database...

How to decompile .net DLL or EXE

DIS# is better decompiler for .net.You can get back your code within few minutes by using dis#.Before purchase dis# take a trial for this.If you need full version of with lifetime membership dis# then please send me a mail to at mangeshgangwar@gmail.com.   Features of dis# Download...

Windows Communication Foundation

Windows communication Foundation a part of the .NET Framework that provides a unified programming model for building service-oriented applications that communicate across the web and the enterprise.    Read the WCF whitepaper   Visual Studio 2010 and .NET Framework...

New Social API Web Application Toolkit for .NET Web Developers

Latest in this API We've just published an update to our Web Application Toolkits! Here is a summary of web application toolkits:Its totally free for .net developers.It help ASP.NET web developers complete common web development tasks and quickly add new features to your apps. Whether it's Bing Maps...

How to decompile any .net DLL

How to decompile any .net DLL Part -1 Part -2 Part -3 Part -...

Find nth Wor from a table in SQL Server or any row from table

/***************************FIND NTH ROW FROM A TABLE IN SQL SERVER OR ANY ROW FROM TABLE BY: MANGESH SINGH**********************************/ DECLARE @N INTDECLARE @COUNT INTSET @N=1SELECT @COUNT=COUNT(*) FROM TBLAGENTEMPLOYEESELECT * FROM(SELECT ROW_NUMBER() OVER (ORDER BY AGENTEMPLOYEEID DESC) AS EID,* FROM TBLAGENTEMPLOYEE) AS AGENTEMPLOYEEWHERE EID=@COUNT-@N /*** WHERE NTH=@N ...