No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
In a chatting application. how it is possible to maintain list of users who eneter in the website after gving their name and passwords. So that every e usres can view all online users. Is ther 3rd part tool or ajax for the purpose? Thanks!
i am maintaining a list of users in a chatting application. Is it possible to sent chatter name (that he given while signin) to the global.asax at session_strat or Application_Start. If yes how? Please also tell some other alternative to do so.
i have taken this code from [url]http://channel9.msdn.com/coding4fun/articles/Basic-Chat-Using-ASP-NET-AJAX[/url]. Global.asax: [code] Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs) Dim chatters As List(Of Chatter) = New List(Of Chatter) chatters.Add(New Chatter(New Guid("CD863C27-2CEE-45fd-A2E0-A69E62B816B9"), "Me")) chatters.Add(New Chatter(Guid.NewGuid, "Juan")) chatters.Add(New Chatter(Guid.NewGuid, "Joe")) Application.Add("Chatters", chatters) Dim chats As List(Of Chat) = New List(Of Chat) chats.Add(New Chat) …
The End.
Muhammad Nauman