Hash Youtube Downloader Launched

Hash YouTube Downlaoder©
Hash YouTube Downloader is a powerful, free and easy to use software that allows users to Download the YouTube Videos just at a Click of a Button. So just Install the Software and get all your favorite videos in your HardDisk, iPhone and Cell Phone.
Enjoy Your Videos.
Download Now
The Various Features of the Hash [...]

Hash Notepad++ – A next gen Powerful Text Editor Launched

Download Here
When just getting the job done is work enough, the last thing you need is to waste time having to learn yet another computer application. Your experience with other tools should be relevant to each new application, making it possible to sit down and use that new application right away. That’s why Hash Notepad++ [...]

Changing the Icon of your Application from its default Image

If you have developed any application, the deafult icon for your application is the icon which is used your OS for an exe file. So what should be done to change the icon to your own icon image.
This is defferent from the icon property of the Form in your appliaction. That is the icon for [...]

ASP.NET : The difference between Gridlayout and FlowLayout

GridLayout provides absolute positioning for controls placed on the page. Developers that have their roots in rich-client development environments like Visual Basic will find it easier to develop their pages using absolute positioning, because they can place items exactly where they want them. On the other hand, FlowLayout positions items down the page like traditional [...]

What exactly happens when the Browser request a ASPX page?

What exactly happens when a browser sends a request for an ASPX page to a Server. Following are the steps which occur when we request a ASPX page :-
1. The browser sends the request to the webserver. Let us assume that the webserver at the other end is IIS. 
2. Once IIS receives the request he looks on [...]

Event Bubbling in ASP.Net

Server controls like Datagrid, DataList, Repeater can have other child controls inside them. Example DataGrid can have combo box inside datagrid. These child control do not raise there events by themselves, rather they pass the event to the container parent (which can be a datagrid, datalist, repeater), which passed to the page as “ItemCommand” event. [...]

Difference between Classes and Structure

Following are the similarities between classes and structures :-
1. Both can have constructors, methods, properties, fields, constants, enumerations, events, and event handlers. 
2. Structures and classes can implement interface. 
3. Both of them can have constructors with and without parameter. 
4. Both can have delegates and events.
Following are the key differences between them :-
1. Structure are value types and classes are [...]

ASP.NET Help : The whole process of Authentication Step by Step

ASP.NET does not run by itself, it runs inside the process of IIS(Internet Information Service). So there are two authentication layers which exist in ASP.NET system. First authentication happens at the IIS level and then at the ASP.NET level depending on the WEB.CONFIG file.
Below is how the whole process works:-
<1> IIS first checks to make [...]

Microsoft Warns Vulnerability In SQL Server

icrosoft issued an advisory late on Monday confirming a remote code-execution vulnerability affecting its SQL Server line.
The vulnerability affects Microsoft SQL Server 2000, Microsoft SQL Server 2005, Microsoft SQL Server 2005 Express Edition, Microsoft SQL Server 2000 Desktop Engine (MSDE 2000), Microsoft SQL Server 2000 Desktop Engine (WMSDE) and Windows Internal Database (WYukon). Microsoft said [...]

Tips to Increase the Performance of Your SQL Database

Following are tips which will increase your SQL performance :-
1. Every index increases the time takes to perform INSERTS, UPDATES and DELETES, so the number of indexes should not be too much. Try to use maximum 4-5 indexes on one table, not more. If you have read-only table,then the number of indexes may be increased.
2. [...]