Hi,<br><br>I was wondering if there is a better way to test of a get/post parameter is set. In the documentation, it says: <i>(or <code>NIL</code> if there ain't no parameter with this name)</i>
. But when it's not set and I do (hunchentoot:get-parameter "foo") and
it DNE, I get a server error. I'm using Hunchentoot 0.15.7 (SBCL
1.0.22). Here is what I'm currently doing:<br>
<i><br>(defun parameterp (str)<br> (dolist (x (hunchentoot:get-parameters))<br> (when (string= (car x) str)<br> (return-from parameterp t)))<br> nil)</i><br><br>Thanks,<br>Erik Nomitch<br>