Hi, it seems still a little complicated and i'm using web messenger original database now so all the
things i need to do now is just to let messenger know who has login. Is there a direct way to do that?
I really don't know how to do now. I'll appreciate if you can give me some codes.
And the problem is my current program is by asp.
And i think the only way to pass username now is to load cookie in global.asax, am i right?
But if i just add the following codes into global.asax
public string GetUserUniqueName()
{
cookie = Request.Cookie("f_user_name");
if(cookie==null)
return null;
string username=cookie;
return username;
}
There comes the error:CS0535: 'ASP.global_asax' does not implement interface member 'CuteSoft.Chat.IHttpApplicationConnectionStringProvider.GetConnectionString(CuteSoft.Chat.UserIdentity);
what should i do,could you plz help me