如何从服务器上的网站向我的电脑发送消息?
我在世界各地的服务器上很少有网站运行某些功能,我希望该网站将输出直接发送到我的计算机(不需要我的计算机,它可以是我位于我的国家/地区的其他网站,重要的是是数据将从站点到达我在地球上的位置)。 谢谢, 伊晒
i have few websites on servers around the world that run a certein function and i want that the site will send the output directly to my computer (no neccessary my computer, it can be my other website that is located in my country, the important thing is that the data will arrive form the site to my location on the globe).
thanks,
yishai
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因此,要打破这一点:
您在美国的网络服务器上有一个功能。您想知道请求一个页面、完成该功能以及将结果返回到您的计算机需要多长时间。
我的(新)建议是:
这应该回答你的问题。
So, to break this down:
You have a function on a web server in the US. You want to know how long it takes to request a page, the function to complete and then for the result to be returned to your computer.
My (new) advice is this:
This should answer your question.
我怀疑“电子邮件”(通常称为电子邮件)可能是最好的解决方案。
如果您将输出通过电子邮件发送给自己,那么您可以从全球任何地方访问结果,无论是从您的计算机还是从某处的网吧。
应该有用的 .net 类是 System.Net.Mail.SmtpClient 和 System.Net.Mail.MailMessage。创建 MailMessage 并使用 SmtpClient 发送它。
I suspect that "electronic mail", commonly called e-mail, is probably the best solution.
If you e-mail the output to yourself then you can access the results from anywhere in the globe, whether it's from your computer or from an Internet Cafe somewhere.
.net classes that should be useful are System.Net.Mail.SmtpClient and System.Net.Mail.MailMessage. Create a MailMessage and send it with the SmtpClient.