> > LOAD does not work because it is designed to LOAD a action client-side, > not serverside. >
Technically, LOAD can be used server side with ajax=False (as was attempted here), but there are two problems with that approach in this case. First, the ajax argument to LOAD is ignored if the url argument is specified (the url argument is for specifying external URLs, not web2py URLs). If you want to set ajax=False, then you have to specify the controller and action using the c and f arguments (exactly the same as if you were using the URL()function). However, in this particular case, it won't work anyway because LOAD with ajax=False only works for regular web2py actions, not for static files. Anthony --

