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 [...]
Filed under: General by Rishav
No Comments »
Here is the code for read the registry value using C#.
First I’m creating registry key value and string value in local machine as follows,
myKey –> key value
myValue –> string name
myReturnValue –> string value
Code for Registry value Reading using C#…
using Microsoft.Win32;
try
{
RegistryKey registry = Registry.LocalMachine.CreateSubKey(”SOFTWARE\\myKey”);
if (registry != null)
{
MessageBox.Show(registry.GetValue(”myValue”));
registry.Close();
}
}
catch (Exception ex)
{
MessageBox.Show (ex.ToString());
}
Code for Values writing in Registry using [...]
Filed under: C# Code, Programming Logic by Rishav
No Comments »
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++ [...]
Filed under: General by Rishav
No Comments »
SQL injection is a technique that exploits a security vulnerability occurring in the database layer of an application. The vulnerability is present when user input is either incorrectly filtered for string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby unexpectedly executed. It is in fact an instance [...]
Filed under: ASP.NET, C# Code, SQL Server Help by Rishav
1 Comment »
Boxing and unboxing is a essential concept in C# type system. With Boxing and unboxing one can link between value-types and reference-types by allowing any value of a value-type to be converted to and from type object. Boxing and unboxing enables a unified view of the type system wherein a value of any type can [...]
Filed under: C# Code, Definition of Terms by Rishav
No Comments »
To store an image in to sql server using C#, you need to read image file into a byte array. Once you have image data in byte array, you can easity store this image data in sql server using sql parameters. Following code explains you how to do this.
private void cmdSave_Click(object sender, EventArgs e)
{
try
{
//Read Image [...]
Filed under: C# Code, SQL Server Help by Rishav
No Comments »
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 [...]
Filed under: Definition of Terms, General by Rishav
No Comments »
Validation controls check user input in SelectionList and TextBox controls. Validation occurs when the form is posted to the server. The validation controls test the user’s input and, if the input fails any of the validation tests, ASP.NET sends the page back to the client device. When this occurs, the validation controls that detected errors [...]
Filed under: ASP.NET by Rishav
No Comments »
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 [...]
Filed under: ASP.NET, General by Rishav
No Comments »
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 [...]
Filed under: ASP.NET, General by Rishav
No Comments »