문제

I developed a web page in asp.net to send HTML email.
I did the coding for sending the mail in asp.net.
The issue is, after sending the mail I need to open a popup window from the mail using hyperlink.
Is this possible?

도움이 되었습니까?

해결책

From a comment on another answer:

I need to open it as a popup window. Not in a new tab.

That requires JavaScript. You cannot run JavaScript in an email. Therefore you cannot achieve what you want.

다른 팁

Try:

<a href='yourULR' target="_blank"> description </a>

This should make it open as a pop-up (unless default browser setting are different)

Although it's not recommended to use pop ups anymore because most users find it extremely annoying.

Hope this helped.

It's possible, just put your:

<a href='yourULR'>description</a>

in your email

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top