我想與ASP.NET和ajax/jquery進行隨機聊天。當用戶進入聊天室時,我需要一種方法來識別用戶,併爲他提供一個唯一的ID,我將在該數據庫中記錄他的單詞。我需要使用會話,cookie還是其他?什麼是實現隨機聊天的最佳方式?聊天室匿名標識
聊天室匿名標識
回答
會議:
- Will expire if the user are idle for some time in the chat
- Will be terminated when the browser closes, by the server.
+ Cannot be changed by the user
餅乾
+ Will not expire
+ Will not be terminated on browser close, so the system can identify the user to be the same the next time
- Can be changed by the user
來識別用戶的絕對最好的辦法將是一個組合數據庫(MySQL/Oracle/MSSQL)和cookie。
- 在cookie中放置一個隨機唯一鍵字符串以標識數據庫中的輸入。
- 使用數據庫中的輸入來扣留用戶的所有信息。
感謝您的詳細解釋!它確實有幫助。 – 2012-01-06 09:29:59
沒問題,這就是我們在這裏! :) – Behrens 2012-01-06 09:30:57
會話是可配置的,您可以更改超時(通常聊天超時)。並記住這是一個匿名聊天。 – 2012-01-06 09:31:12
我認爲你應該使用一個session_id
我會給一個鏡頭在使用它:)謝謝。 – 2012-01-06 09:28:31
- 1. 聊天室執行
- 2. JavaScript聊天室的用戶名顏色
- 3. 創建一個聊天室內的一個聊天室網站
- 4. 聊天室環聊式三角形
- 5. 聊天室的定位
- 6. 移動聊天室技術
- 7. C#XNA聊天室系統
- 8. 接受聊天室邀請
- 9. 聊天室背景代碼
- 10. ASmack多用戶聊天室
- 11. StackExchange聊天室在哪裏?
- 12. 刪除聊天室ejabberd
- 13. .net聊天室系統
- 14. 簡單的java聊天室
- 15. 顯示在聊天室
- 16. Actionscript聊天室幫助
- 17. nodejs和socket.io聊天室
- 18. 程序員的聊天室
- 19. 自動滾動聊天室
- 20. Javascript + Pubnub聊天室通知
- 21. 聊天室和白板Php
- 22. HTML5簡單聊天室
- 23. 信號器聊天室
- 24. Html到PDF聊天室mvc
- 25. 自動更新聊天室
- 26. SignalR多個聊天室
- 27. .net聊天室散列(eStreamChat)
- 28. YouTube API視頻聊天室
- 29. Java對等udp聊天室
- 30. Azure移動聊天室
我不是一個ASP程序員,但我認爲你應該使用session_id作爲 – 2012-01-06 09:16:22
謝謝,Glide。我想知道是否使用會話ID是這種網站的常態。 – 2012-01-06 09:19:01
這對我來說似乎是最合乎邏輯的 – 2012-01-06 09:23:01