Archive for the ‘classic ASP (VBScript)’ Category.

using gravatar in classic ASP

A gravatar is a globally recognized avatar, which means that your avatar is stored in one place and it will appear on several websites, blogs, forums (which support gravatars). Whenever you change your avatar it will be updated on your existing comments, forum posts, etc. It’s a great service! Now if you know what a gravatar is you might want to use it in one of your classic ASP applications. This post describes how to solve this simple problem… Continue reading ‘using gravatar in classic ASP’ »

ajaxed 0.3 released

i have updated ajaxed (classic asp ajax library) to its 0.3 version. Thanks to all contributors who helped me with their feedback. Here are the updates… Continue reading ‘ajaxed 0.3 released’ »

ASP JSON utility class 1.4 released

I did check all your comments on the JSON utility class and fixed the existing bugs. The new changes are available in version 1.4 which is available for download now. I really appreciate your help by posting your comments and solutions. Most of them have been considered in the new version. Have fun and please keep me informed about new issues.

Download JSON 1.4

JSON Utility class 1.3 released

The summer here in Austria is really hot this year and therefore I had not much time to do a lot for webdevbros. Enjoying the sun as much as possible ;) However I was very happy about getting a big amount of feedback for my JSON utility class which showed me that you guys out there are using it. Thanks for that! As a gift for that I spent some time to update the class and released a 1.3 version. Changes are the following:

  • The class can easily be used with “Option Explicit” now
  • Multidimensional arrays are supported (unlimited dimensions)

Go to the download and grab your version. It is backwards compatible so it is not a problem to override your old version .. hopefully you didnt change anything ;). Have fun with it and feedback is welcomed.

Using a database with ajaxed

Since version 0.2 it is possible to use a database with ajaxed out of the box. The library offers the ability to configure a connection string for the use of ODBC within your pages. After that convenient methods enable access to the database. The following paragraphs give a short insight into the usage of a database within ajaxed. Continue reading ‘Using a database with ajaxed’ »

ajaxed 0.2 released

Upon releasing the first version of a classic ASP AJAX library called ajaxed I received a lot of positive response. For this reason I have extended the library and released version 0.2 now. The update consists mostly of server side additions which have not really to do with Ajax. Still those additions are very useful when working with ajaxed because everything is done on server side. Here is a short excerpt of some additions:

  • A database can be easily configured now and accessed with several convenient methods.
  • A collection of useful string functions is now directly accessible (check VBScript String functions). Those functions are necessary for all kind of projects you do.
  • Prototype 1.5.1.1 is being used now

Have a look at the new version and give me your feedback. I hope that I can find some time to come up with more tutorials.

ajaxed on Ajaxian

Ajaxian logoHey it is really cool that one of the most popular Ajax websites (Ajaxian) have posted a short article about the ajaxed Library. Thanks to Dion Almaer who wrote about it. I like the comments there where ppl are talking about ASP and ASP.net. Especially the first one is funny:

Ian: Just who the hell is having to use Classic ASP still?… oh.. wait.. thats me! Thanks, Dion!

I have done some updates and the version 0.2 is coming soon guys…

ajaxed resource page

I thought its better to create an own page dedicated to the ajaxed Library. It is easier to follow the current changes, bugs, feature requests, etc. The page can be found in the menu on the right or just here. Because I got some nice feedback I will come up with more tutorial within the next weeks. Promise ;)

ajaxed: Calling server side VBScript procedures from client side (equivalent to PHP xajax)

My last post (about an ASP RSS component) included a demonstration which made use of a cool ajax technique simply called “ajaxed”. See the demonstration here again. If you play around you will recognize that there is no conventional postback and AJAX is up in here ;) I have developed a small “library” which easily allows you to call server side ASP VBScrtipt procedures from the client side. No low-level Ajax knowledge is required… Continue reading ‘ajaxed: Calling server side VBScript procedures from client side (equivalent to PHP xajax)’ »

ASP (VBScript) RSS reader/writer class

Once i was looking for a nice RSS class/component for ASP which allows me to read all kind of feed formats programmatically. In addition to the correct parsing it should also be able to create own feeds for publishing purposes. Unfortunately I could not find any component which fits those requirements in ASP and therefore written my own. Continue reading ‘ASP (VBScript) RSS reader/writer class’ »