Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~265 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for Muhammad Nauman

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!

Member Avatar for Ramesh S
0
159
Member Avatar for Muhammad Nauman

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.

0
51
Member Avatar for Muhammad Nauman

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) …

0
55

The End.