Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Chat and Cute Web Messeng...
»
Re: The chat does not works
The chat does not works
Last post 11-05-2012, 6:38 AM by
Kenneth
. 21 replies.
Page 2 of 2 (22 items)
< Previous
1
2
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
11-03-2012, 10:48 AM
75144
in reply to
74987
Armand66
Joined on 07-15-2012
Posts 15
Re: The chat does not works
Reply
Quote
Hi Kenneth,
Can you give me the example in Visual C
#?
Thanks,
11-05-2012, 6:38 AM
75151
in reply to
75144
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: The chat does not works
Reply
Quote
Hi Armand66,
C# code
public
override
bool
GetUserInfo(
string
loginName,
ref
string
nickName,
ref
bool
isAdmin)
{
try
{
string
username = System.Web.Security.Membership.GetUser(loginName).UserName;
if
(username ==
null
)
{
return
false
;
}
nickName = username;
isAdmin =
true
;
return
true
;
}
catch
(Exception ex)
{
return
false
;
}
}
Regards,
Ken
Page 2 of 2 (22 items)
< Previous
1
2