Sourcecode Repository
Convert a DateTime string to a Unix timestamp in VbScript / Classic ASP
To convert a datetime string value like “2016-01-01 12:30:00” to a Unix timestamp (the seconds from 01/01/1970 to the input datetime) You can use a conversion function as the following: Then, to get... Read More
Base64 encoding / decoding functions in VbScript / Classic ASP
With the following functions Base64Encode(sText) and Base64Decode(ByVal vCode), You can easly encode/decode a text in/from base64 in VBScript/Classic ASP: Read More
C# code to VB.NET free online converter
Simply paste your C# code and this free online utility will automatically convert it to its equivalent in VB.NET. This utility now support .NET 3.5 syntax: http://www.developerfusion.com/tools/convert/csharp-to-vb/ You can reverse code from VB.NET... Read More
New Associative Array Class for VB.NET / ASP.NET and C#
I have coded the “Associative Array Class” also for VB.NET and ASP.NET so You can add this class to your .NET projects; Download the VB.NET/ASP.NET Associative Array Class from: https://sourceforge.net/projects/vbnetassocarray/ You will find... Read More
How to export an ASP Associative Array to XML
“Asp Associative Array Class” provides a method to easly export all items to a well formatted XML string. For example, You can create a new *.ASP file : And You will get out... Read More
How to populate an ASP Associative Array with records from MySQL / Access database Table
In this example, You can learn how to populate an ASP Associative Array with the records of a database table (MS Access or MySQL); then, how to programmatically manage well structured data without... Read More
How to use Associative Arrays in ASP
First of all, You need to download the “Asp Associative Array class” then include the file “AssociativeArrayClass.asp” in your asp page. Right now, You can start declaring associative arrays in ASP with the... Read More
VBScript Class to create easly Associative Arrays in ASP like in PHP
I’ve posted a project at Source Forge with an ASP/VBScript class to create easly associative arrays like in PHP; visit http://sourceforge.net/projects/asp-assoc-array/ It is possible also load in an associative-array the data coming from... Read More