how to open MSI in a new window? (using javascript)
-
in my asp.net application,i have a manu javascript in a user control.when ever onclick ,it s directed to other aspx forms.for this i am using the script: var menu1=new Array()//for payroll menu1[0]='Payroll management' menu1[1]='Payroll Compensation' i want to open the aspx page in a seperate new window. how can i do this? also i am using a seperate msi also in this project.For that also i am giving the same script: var menu8=new Array()//for Mail menu8[0]='a href="httprequest/Start.aspx">e-mail' Its working fine,but i have to click back button in the browser to go my application again.so i want to open this msi also in a seperate new window.what is the script for that..?
-
in my asp.net application,i have a manu javascript in a user control.when ever onclick ,it s directed to other aspx forms.for this i am using the script: var menu1=new Array()//for payroll menu1[0]='Payroll management' menu1[1]='Payroll Compensation' i want to open the aspx page in a seperate new window. how can i do this? also i am using a seperate msi also in this project.For that also i am giving the same script: var menu8=new Array()//for Mail menu8[0]='a href="httprequest/Start.aspx">e-mail' Its working fine,but i have to click back button in the browser to go my application again.so i want to open this msi also in a seperate new window.what is the script for that..?
Hi, u can use "target" property of anchor tag, like this, Below is yr code : var menu8=new Array()//for Mail menu8[0]='a href="httprequest/Start.aspx">e-mail' -- just change yr code like this.... var menu8=new Array()//for Mail menu8[0]='a target="_blank" href="httprequest/Start.aspx">e-mail' I hope it will help u... Regards
Rana Krishnraj