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
Re: The chat does not works
11-05-2012, 6:38 AM
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
View Complete Thread