Tags: ASP.NET

Create a Random or Sequential GUID using ASP.NET and C#

Benjamin Perkins C#

The 2 controls above create either a GUID or a Sequential GUID. Generate a Radom GUID online or a Generate a Sequential GUID online using the above control. There is nothing too complicated about creating a random GUID. Using the below C# code provides a unique value. string uniqueRandomKey = Guid.NewGuid().ToString(); I like to use […]

Read More →

Localizing an ASP.Net program using C#

Benjamin Perkins C#

See also the article about localizing a WPF system here. See also my video about localizing a WPF system here. These days when you are designing a GUI (Graphical User Interface) one of the many topics to discuss is that of localization. Simply, localization means that local date format, currency and language will be supported […]

Read More →