Encode/Decode – Two routines for ASP encryption
‘ These two VBScript routines can be use to encrypt data passed on the ‘ querystring, ‘ so that users can’t decode what is being passed between ASP pages.’ USE:
‘ These two VBScript routines can be use to encrypt data passed on the ‘ querystring, ‘ so that users can’t decode what is being passed between ASP pages.’ USE:
The System.Net.Dns class exposes a few static methods that let you resolve an internet domain name – such as www.vb2themax.com – into a 4-part numeric IP address, also known as
You can host the WebBroweser in a Windows Forms application, similarly to what you can do with any other ActiveX control. You just need to right-click on the control toolbox,
‘ a class to display the BrowseForFolders dialog’ usage:’ Dim diag As New BrowseForFoldersDialog()’ diag.Description = “Select a directory”‘ If diag.ShowDialog() = DialogResult.OK Then’ ‘ the user selected this directory’
The String.Format function supports many formatting options, but none allows you to display right-aligned columns of numbers, as in: 1.00 12.00 123.00 1,234.00 However, you can easily create a helper
The .NET framework includes a ByteViewer control, that you can use on your own forms to display data stored in a Byte array or in a file. The ByteViewer control
Private Type DEVICE_MEDIA_INFO Cylinders As Double MediaType As STORAGE_MEDIA_TYPE TracksPerCylinder As Long SectorsPerTrack As Long BytesPerSector As Long NumberMediaSides As Long MediaCharacteristics As LongEnd TypePrivate Type GET_MEDIA_TYPES DeviceType As Long
Although ASP.NET lets you distribute web.config files over all the application’s subdirectories, it surely doesn’t force you to do so. You can keep all the application settings in its main
The httpRuntime tag in ASP.NET configuration files lets you determine several behaviors of ASP.NET at the machine or site, including the global value for script timeout. Here’s the complete syntax