how to open a new window with no toolbar after login

C

chirakg21

I have a one single login page with two textbox of
Username(txtUsername) and password (txtPassword) and two buttons with
one Login(cmdLogin) and Cancel(cmdCancel).

Now in the code behind I have code like

Private Sub cmdLogin_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles cmdLogin.Click


Dim CAPSsystem As CAPS.WebUserDB = New CAPS.WebUserDB()
Dim webUserID As String = CAPSsystem.Login(txtUserName.Text,
txtPassword.Text)


If Not (webUserID Is Nothing) And webUserID <> "" Then

Dim userDetails As CAPS.WebUserDetails =
CAPSsystem.GetWebUserDetails(webUserID)
Session("ssnUserName") = txtUserName.Text
FormsAuthentication.RedirectFromLoginPage(txtUserName.Text, 0)


Response.Clear()

Response.Redirect("CAPSFrameset.htm")

Else
lblMsg.Text = "Incorrect Username or Pasword"
End If

End Sub

which is checking credentials from Database.

Now instead of Response.Redirect("CAPSFrameset.htm"), I want to open
CAPSFrameset.htm in new window which I need to be without Toolbar and
hide the orignal Login window.

I tried using Javascript code
function CallScript(){
window.open ('CAPSFrameset.htm','test','top=0,left=0,scrollbar=0,toolbar=0');
} in HEAD

and cmdLogin.Attributes.Add("onClick", "CallScript()") in page-load of
the form

but it isn't working for me i think because I already have serverside
code for that button.
 
C

Chris Jackson

You are exactly right - if you have server side code, the runtime will
inject a javascript function in what it renders, and your javascript code
will not be called. Change that button to an <input type=button>, without
runat=server, and it should work as you expect.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,743
Messages
2,569,478
Members
44,898
Latest member
BlairH7607

Latest Threads

Top