i have image on my web application.

When i click that i will be redirected to track jsp.What that jsp does is track the image that is clicked and redirect to that image url

.At present i asing response.sendredirect(URL) which will redirect in same window.Is there any possiblity to open link in new window/tab without any manual intervention.
That is when we click on the image url should be opened in new window.

with html you can setup a link to be opened in a new tab this way :

<a href="track.jsp?.." target="_new">
    <img src="url_of_image"></img>
</a>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.