2006-08-23から1日間の記事一覧

さっき気がついたこと・・・。

今までのJSPの例で、キャッシュ無効化の部分で間違いがありました。 【誤】 response.setHeader("progma","no-cache");【正】 response.setHeader("Pragma","no-cache");「o」になってましたorz すでに修正しましたが、流用している場合にはお気をつけくださ…

Ajax.Updaterクラス

【抜粋】一部省略 Ajax.Updater = Class.create(); Object.extend(Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype), { initialize: function(container, url, options) { (省略) }, (省略) if (this.responseIsSuccess()) { if (this.onComp…