0

我制作了一个轴 2 网络服务,它通过某种激活链接向用户发送电子邮件

当用户单击该激活链接时 - 我的 postgresql 中的活动列应更新 0------------------------------- ----------------

所以我决定最简单的方法应该是添加更新此列的方法 uodatedb,我的激活链接实际上是指向 mywebservice 及其 udatedb 方法的链接,看起来像

**

 " <a href=\"http://localhost/hashing_password/services/Hashing_Password/UpdateDB?choUUIID=" +uuid+"\">http://localhost:9091/Hashing_Passwords/services/Hashing_Password/UpdateDB?choUUIID=" +uuid+

当我点击链接时,我看到一条警告消息,提示我被重定向到一个可能包含病毒的奇怪格式的页面。

有没有更好的方法来创建该激活链接 - 没有

有人告诉我,我可能会创建 php 代理页面,但我没有使用 php

4

1 回答 1

0

You link to http://localhost/, but the label of your link shows http://localhost:9091/. Maybe your browser thinks that this is a potential malicious link. Correct the link or use a more neutral label.

于 2013-04-26T11:59:04.673 回答