Re: Can I go from login straight to a chat room?

  •  03-21-2014, 9:36 AM

    Re: Can I go from login straight to a chat room?

    hi,

     

    Please open the login page "Login.aspx", find section below

     

    1. if (this.DoLogin(this.txtUsername.Text, this.txtPassword.Text))  
    2.             {  
    3.                 FormsAuthentication.RedirectFromLoginPage(this.txtUsername.Text, this.chkPersistentPassword.Checked);  
    4.                 //this.Response.Redirect("~/Default.aspx");  
    5.             }  
     

    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.

     

    1. if (this.DoLogin(this.txtUsername.Text, this.txtPassword.Text))  
    2.             {  
    3.                 FormsAuthentication.RedirectFromLoginPage(this.txtUsername.Text, this.chkPersistentPassword.Checked);  
    4.                 this.Response.Redirect("http://localhost:14462/CuteChatAndMessenger/CuteSoft_Client/CuteChat/Channel.Aspx?Place=Lobby-1");  
    5.             }  
     

    Regards,

     

    Ken 

View Complete Thread