need to open the aspx page in another window(just as popup)

  • Thread starter Thread starter Valli
  • Start date Start date
V

Valli

Hi,

I have an htm page which transfers to another aspx page(Default.aspx). I
need to open the aspx page in another window(just as popup).
How can I set target property here?

Can anyone help me to achiev this...

My coding in htm page is

<script language="javascript" type="text/javascript">

window.location.href = '/Website/Default.aspx';

</script>


Regards
Valli
 
Hi,

I have an htm page which transfers to another aspx page(Default.aspx). I
need to open the aspx page in another window(just as popup).
How can I set target property here?

Can anyone help me to achiev this...

My coding in htm page is

<script language="javascript" type="text/javascript">

window.location.href = '/Website/Default.aspx';

</script>

Regards
Valli

Hi, an example could be

<img src="" border="0" onclick="window.open('/Website/
Default.aspx','_new', 'width=250,height=250,top=250,left=250')">

bye. ;)
 
Back
Top