Categories: Programming, ASP (classic), C#, HTML, PHP
By admin on Mar 3, 2010 | In HTML, Programming | Send feedback »
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 »
By admin on Nov 15, 2009 | In MySQL, Utilities, PHP | Send feedback »
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 »
By admin on Aug 7, 2009 | In ASP (classic) | Send feedback »
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 »
By admin on Jul 23, 2009 | In PHP | Send feedback »
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 »
By admin on Jul 13, 2009 | In ASP (classic), Parallels Helm | Send feedback »
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 »
By admin on May 27, 2009 | In MySQL, ASP (classic), IIS web server | Send feedback »
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 »
By admin on Apr 6, 2009 | In ASP (classic), Windows XP 64 | 1 feedback »
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 »
By admin on Mar 4, 2009 | In ASP (classic) | Send feedback »
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 »