On 2/18/07, Ernesto Adorio <[EMAIL PROTECTED]> wrote:
 I have a simple question: What is the Quixote
   equivalent of the following ASP script
   <%
   response.write(time)
   %>

   I tried
   def testajax [plain](self):
      print "debugging:returning time value"
      return "%s" % time.time()

   with "testajax" in my _q_exports list. The function
   testajax is called as gleaned from the error log,
   but all I get is  a Page not found
   error in my test browser.

Did you add it to ._q_exports ?  That's usually what "page not found" means.

You should also set the correct MIME type if not returning HTML:

quixote.get_response().set_content_type("text/plain", "iso-8895-1")

--
Mike Orr <[EMAIL PROTECTED]>
_______________________________________________
Quixote-users mailing list
[email protected]
http://mail.mems-exchange.org/mailman/listinfo/quixote-users

Reply via email to