Hide url in a javascript popup in asp.net -


i'm using mozilla firefox , need hide url popup i'm using location=no,directories=no it's still showing

<asp:button id="btn_login" runat="server" text="login" width="105px" style="height: 26px" onclientclick = "javascript:window.open('login_page.aspx','name','height=299, width=477,toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=no,about:blank'); return false;" /> 

how can fix it?

thank you

instead of popup can use jquery dialog , besides browser block popup windows these days

$('<div></div>').dialog() 

Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -