Srilakshmi.murthy,
You can use windows authentication mode and your user will not need to enter the password.
In the integration code, you need to do something like this:
public override AppChatIdentity GetLogonIdentity()
{
string name=HttpContext.Current.Request.ServerVariables["LOGON_USER"];
if(name==null||name=="")return null;
return new AppChatIdentity(name,false,ToUserId(name),HttpContext.Current.Request.UserHostAddress);
}
and you also need to return some information for the function :
public override bool GetUserInfo(string loginName, ref string nickName, ref bool isAdmin)
{
//change this code to better
nickName=loginName;
isAdmin=false;
return true;
}
asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
asp wysiwyg html editor: http://cutesoft.net/ASP
asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
Live Support: http://cutesoft.net/live-support/default.aspx