Application

Posts filed under Application

Generate Randon Machine Key in your ASP.NET Application

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

A machineKey generator allowing static keys in ASP.NET 1.1 or 2.0 applications. There are two keys that ASP.NET uses to encrypt, decrypt, and validate data in ViewState, Forms Authetication tickets, and out-of-process Session data. The decryptionKey is used for encryption and decryption of authentication tickets and encrypted ViewState information. The validationKey is used to validate ViewState and [...]

How to Develop Resolution Independent Windows Application in .NET

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

While developing a Windows based application in C#.net the Form size matters when your application is going to run on different different computers. Also the other computers system may have different different resolution. So we need to develop an application that can vary the form size according to the Resolution of the particular system. In [...]

How to customize the Dialog Box in C#.Net Window Application

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

Hello everyone, how to show a Dialog Box in C#.NET Window Application? Its very simple task because you just have to show the messagebox.Show() method. But some time we need to customize the dialog box according to our requirement. Today I will show you that how to customize the Dialog Box in C#.NET Window Application. [...]

How to use Timer Control to develop a Stop Watch Application in C#.NET

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

While developing Window Application in ASP.NET some time we need to use Timer Control for some specific purpose. The Timer control is mainly used to show your output in specific time intervals. Simply we can say that the Timer control is used in that applications where the developer used to show the output after some [...]