Adam:
>>4) Why does cutechat use the login name of the registered user, instead of the user's display name, for creating the chat user instance? Because of this, a number of users have to rename themselves every time they enter the chat window. That's pretty annoying.
Please open global.asax
and change the following code:
nickName = user.Username;
to:
nickName = user.DisplayName;
This doesn't seem to have made any difference.