9 Mar
2000
9 Mar
'00
10:57 p.m.
"M.J. Stahl" wrote:
I currently have a hyperlink, that is used to delete an object that resides within the OOSStorage folder.
[<a href="outofstock/OOSStorage/manage_delObject(<dtml-var id>)">SHIPPED</A>]
<a href="whatever/manage_delObject?id=<dtml-var id>"> Calling a method with () is a python convention. HTTP has no convention of calling anything, we just use the convention that the query string (everthing after the ? in a URL) is a list of name=value pairs seperated by &. This is per the CGI specification. -Michel