Click here to Skip to main content
15,896,269 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
The code looks like..
.aspx.cs::
--------
C#
if (ddl.SelectedIndex == 10)
           {
               string url="ABC-2118(10-09).pdf";
               Page.ClientScript.RegisterStartupScript(this.GetType(), "open", "OpenWinLIP178("+url+");", true);
           }

.aspx::
-------
C#
var url;
  function OpenWinLIP178(url) {
      window.open(url, 'LIP178', 'height=700,width=850,left=50,center=100,top=50,resizable=yes,scrollbars=yes, toolbars=no, status=no');
  }


This code is not working for me.Its throwing the error like 'ABC' is undefined.Can anyone correct this code?
Posted
Comments
CHill60 3-Jan-13 11:16am    
Do you need to surround ABC-2118(10-09).pdf with quotation marks when passing it into OpenWinLIP178?
priya9826 3-Jan-13 11:17am    
Yeahh..Got the solution.Forget to do that...Thank you very much
[no name] 3-Jan-13 11:36am    
Upvote the solution too...

1 solution

Hi,

you can use like this:

C#
protected void button_Click(object sender, EventArgs e)
    {
        // open a pop up window at the center of the page.
        ScriptManager.RegisterStartupScript(this, typeof(string), "OPEN_WINDOW", "var Mleft = (screen.width/2)-(760/2);var Mtop = (screen.height/2)-(700/2);window.open( 'your_page.aspx', null, 'height=700,width=760,status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no,top=\'+Mtop+\', left=\'+Mleft+\'' );", true);
    }


Refer the following links too.
open a new window
open a new window using jquery

Thanks
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900