function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vinay Reddy 7Vinay Reddy 7 

Onclick open a new window along with passing the parameters to next page

The parameters data was passed to the next page by redirecting the page but I want the same information to be open in new window not in the same window.
SandhyaSandhya (Salesforce Developers) 
Hi Vinay,

You can use something like this .
 
window.open('/apex/VF_AnotherPage?studentId=' + studentId);

Please refer below links.

https://developer.salesforce.com/forums/?id=906F0000000971NIAQ
 
http://salesforce.stackexchange.com/questions/17766/new-window-in-visual-force-page
 
Hope this helps you!

If this helps you mark it as solved.

Thanks and Regards
Sandhya
Vinay Reddy 7Vinay Reddy 7
Thanks for your reply Sandhya
User-added image

User-added image

Onclick on send Email button, I want to open the second image in new tab along with email id in first image as shown in above. 
I have used PageReference page and redirecting to pass parameters.