Categories: Programming, ASP (classic), C#, HTML, PHP

safe ajax links using jquery

If you do need to create safe ajax links (a elements that use ajax.load method of jquery) then you can do this with the brilliant example from view ajax links tutorial more »

Server to go, apache, php, perl and mysql running from cd rom (server2go)

what a great little project. You can now run apache, php, mysql from a cd rom to create your own web application which you can then distribute on non writeable media.You can get this herehttp://www.server2go-web.de/index.htmlThe software is f… more »

asp function to check if an email address is valid

function IsValidEmail(email) IsValidEmail = true dim names, name, i, c names = Split(email, "@") if UBound(names) <&rt; 1 then IsValidEmail = false exit function end if for each name in names if Len(name) <=… more »

squirelmail not connecting to hmail server - imap error

Squirelmail suddenly stop connecting (imap refused error) to my hmail server (all controlled by the Parallels Helm). The solution was simple. The config file of squirelmail had the imap server as localhost and someone had changed the default domain o… more »

Install phpMyAdmin to Parallels Helm control panel as an application package

I tried recently to add phpmyadmin on my parallels helm control panel but found little help from the forums and found the developers documents poor (as usual for Helm). I decided to create my own phpmyadmin parallels helm application package. Please n… more »

Mysql field in asp generates error: Variable uses an Automation type not supported in VBScript

Recently whilst migrating an old site from mysql 4 and Windows 2000 server to MYSQL 5 and IIS7/Windows 2008 an old script that worked fine stopped working giving error type mismatch and when trying to determine the type name it returned error Variable u… more »

Run Live mesh on windows XP 64

I recently discovered windows live mesh and my initial thoughts are quite possitive. However when I tried to run it on my windows xp pro 64 machince I discovered that this is not an operating system supported by live mesh. The work around was sim… more »

replace characters in a string using asp

mytext = "yo-yo-is?" mytext = Replace(mytext , "-", "@") Response.Write mytext The code above will search our mytext and will replace all dashes with @. The result will be yo@yo@is? more »