<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-2">
<META content="MSHTML 6.00.2900.5969" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>I have this piece of code:</FONT></DIV>
<DIV><FONT face=Arial
size=2>-------------------------------------------------------------------------------------------------------------------------</FONT></DIV>
<DIV><FONT face=Arial size=2>(hunchentoot:start (make-instance
'hunchentoot:acceptor :port 5000))</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>(push (hunchentoot:create-prefix-dispatcher "/"
'start-page) hunchentoot:*dispatch-table*)<BR>(push
(hunchentoot:create-folder-dispatcher-and-handler "pics/"
"c:")<BR>
hunchentoot:*dispatch-table*)</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV><FONT face=Arial size=2>
<DIV><BR>(defun start-page ()<BR> (cl-who:with-html-output-to-string
(*standard-output* nil :indent t)<BR>
(:html<BR> (:body<BR>
(:img :alt "alt" :src "pics/pic01.jpg")))))</DIV>
<DIV>--------------------------------------------------------------------------------------------------------------------------------</DIV>
<DIV>and when I go to http://localhost:5000 I don't see a picture, I see
alternative text "alt".</DIV>
<DIV>Why, where is the problem ?</DIV>
<DIV></FONT> </DIV></BODY></HTML>