String

Posts filed under String

How to Split and Merge a String Value

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

Today we will discuss two main operation that can be performed with String while developing an application in ASP.NET. First let me explain these two terms. Split is the term in which we break a string value to multiple string values. The splitting is performed with a specific separator  value. Suppose we need to split a date [...]

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 [...]