.NET Development

Posts filed under .NET Development

Bind Combobox with Data From Database in C#.NET WinForm

Filed in ASP.NET, Desktop AppTags: , , , , , , , , , , , , ,

A Combobox is a commonly used  Control in WinForm. It is a combination of a List Box and a single-line TextBox, allowing the user to either type a value directly into the control or choose from the list of existing options. Sometime, We need to fetch the data from Database and bind data with Combobox Control, so [...]

How to Add User Control to a Winform in C#.NET

Filed in ASP.NET, Desktop AppTags: , , , , , , , , , ,

A User Control is a kind of composite control that works much like an WinForm. You can add existing  controls and markup to a User Control, and define properties and methods for the control. You can then embed them in WinForm, where they act as a unit. The topics in this section provide information on [...]

How to Encrypt and Decrypt String in C#.NET

Filed in ASP.NET, Web AppTags: , , , , , , , , , , , , ,

In Cryptography, Encryption is the process of transforming information using an algorithm to make it unreadable to anyone except those possessing special knowledge, usually referred to as a key. The result of the process is encrypted information. And the reversed form of Encryption is called Decryption. The process of making the encrypted information readable again [...]