把登入登出做到一起,就象CodeCharge做的效果那樣的!
謝謝!
CodeCharge Studio3.0.2.2怎樣做登入登出頁面!高手指教!
這個可搭配 CCS 3.0 的 Panel 功能來做到
先加入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;
}
即可完成
裡面放置 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;
}
即可完成
- 附加檔案
-
- CCS-login_logout.JPG (138.01 KiB) 已瀏覽 2302 次