vote up 0 vote down star

Hi,

I am making an web based appliaction in java (using jsp). When the appliaction is invoked login page will come, when the user enter the valid credientials, he will be taken to the index page. But the problem is, when the login is success, the index page is coming but it is opening behind the login page. (means login page appears on the top of the monitor, I want index page should appear on the top of the window.) Can anyone help me out in this...Please

flag

4 Answers

vote up 2 vote down

Programming in a browser doesn't support modal windows in the way you mean - to do this you really need to be writing a 'desktop' application.

The simplest solution is to redirect the browser to the login page (remembering the page the user requested), handle the login and then redirect back to the requested page.

link|flag
vote up 2 vote down

You should reconsider your design.

Having a webapp with an extra login page that comes up and a functionality that requires ordering windows is not going to work in a consequent manner on different browser and not even in the same browser.

modern webbrowser more and more use tabs for opening new windows and more and more people are getting used to it. Even before tabbed browsing it was not easily done.

Work with 1 single window and just navigate in the same window.

link|flag
vote up 0 vote down

Thanks for ur suggestion, i will change my design...

link|flag
vote up 0 vote down

i have changed my design....everthing will be opened in the same window. Now the problem is, when the users clikc on the logout option, he is redirecting to login page, and the blocked the back button. but when he do refresh he is getting into the same page...can u plz help me out..:-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.