1 頁 (共 1 頁)

CodeCharge Studio3.0.2.2怎樣做登入登出頁面!高手指教!

發表於 : 2006-01-09 18:09:00
kjx
把登入登出做到一起,就象CodeCharge做的效果那樣的!
謝謝!

CCS 的權限畫面

發表於 : 2006-01-10 16:58:07
yehlu
CCS 的設計是登入與登出是分開的
要做在一起應該也是可以的

等我有空研究一下要怎麼做
再貼上來

這個可搭配 CCS 3.0 的 Panel 功能來做到

發表於 : 2006-01-10 23:03:19
yehlu
先加入Panel1
裡面放置 Logout 的元件 可用 Builders -> Authentication Builder -> Logout Link to this Page 產生

再加入Panel2
裡面放置 Login Form 可用 Builders -> Authentication Builder -> Login Form 產生

將 Panel1 及 Panel2 都設為 Visible NO

在 Panel1 的 Event -> Before Show 加入下列的程式碼
if (CCGetUserID()) {
$Panel1->Visible = true;
}

在 Panel 的 Event -> Before Show 加入下列的程式碼
if (!CCGetUserID()) {
$Panel2->Visible = true;
}
即可完成

Panel 的使用

發表於 : 2006-01-10 23:07:01
yehlu
請參閱
http://docs.codecharge.com/studio3/html ... anels.html
上面的範例是用 PHP 做的哦

問題已經解決,謝謝!

發表於 : 2006-01-11 17:24:36
kjx
問題已經解決,謝謝!
回頭請你渴兩盅!哈哈