Home > Archive > PERL Beginners > September 2006 > cgi
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
|
| hi,
is it possible, that the browser cached a code of a class??
i have some cgi scripst, where i call some method from a class and no
matter if i change it or not, it sitt dies in same place(in this class)
..
any hints
thx
raul bada
| |
| usenet@DavidFilmer.com 2006-09-26, 6:57 pm |
| Hakim wrote:
> is it possible, that the browser cached a code of a class??
No, absolutely not. The browser does not (and cannot) see your code -
only the HTML your code generates.
> i have some cgi scripst, where i call some method from a class and no
> matter if i change it or not, it sitt dies in same place(in this class)
You have an error on line 46.
--
David Filmer (http://DavidFilmer.com)
| |
| nobull67@gmail.com 2006-09-27, 6:59 pm |
|
usenet@DavidFilmer.com wrote:
> Hakim wrote:
>
> No, absolutely not. The browser does not (and cannot) see your code -
> only the HTML your code generates.
On the other hand, if you are not really using CGI but using certain
web _servers_, like say Apache+mod_perl which provide what appears a
very CGI-like environment via a completely different implementation
then the Perl interpreter in the server may cache your modules.
|
|
|
|
|