hi,
Please open the login page "Login.aspx", find section below
- if (this.DoLogin(this.txtUsername.Text, this.txtPassword.Text))
- {
- FormsAuthentication.RedirectFromLoginPage(this.txtUsername.Text, this.chkPersistentPassword.Checked);
-
- }
You can redirect to the chat room page in the code above by asp.net method "Redirect()", like below. The url should change to your own chat room page url.
- if (this.DoLogin(this.txtUsername.Text, this.txtPassword.Text))
- {
- FormsAuthentication.RedirectFromLoginPage(this.txtUsername.Text, this.chkPersistentPassword.Checked);
- this.Response.Redirect("http://localhost:14462/CuteChatAndMessenger/CuteSoft_Client/CuteChat/Channel.Aspx?Place=Lobby-1");
- }
Regards,
Ken