URL masking in html -
i have masked url in html page follows:
<head> <base href="http://www.abc.com" /> <meta name="description" content=""> <title></title> </head> <frameset rows="100%,*" frameborder="no" framespacing=0 border=0> <frame src="https://www.xyz.com/login.htm" name="mainwindow" frameborder="no" framespacing="0" marginheight="0" marginwidth="0"></frame> </frameset> <noframes> </head>
the https://www.xyz.com/login.htm
outsourced link , not have access source code. when user clicks login button
on page, user logged in. on login separate page loaded user.htm
. however, due masking applied (above), see masked url after login. view original url once user logs in. can prevent that?
edit: got access login.htm file. placed on server. file contains login button not button image:
<input target="_top" type="image" src="images/login-submit.png" align="middle" value="connect" name="connect">
adding target="_top" button not helping. how can break out of frame on clicking connect
. pointers?
since content on origin, can't detect when user has logged in frame page, can't in response user logging in.
since have no access login.htm
(and presumably user.htm
) can't add target="_top"
there either.
so no, can't prevent it.
Comments
Post a Comment