本文介绍了导航到其他站点ASP.NET的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人有办法导航到另一个网站吗?我通常使用

 Response.Redirect(Home.aspx); 



但现在我想导航到外部网址。例如,我试过

 Response.Redirect(https://www.google.com); 

但这仅适用于localhost,当我的网站在服务器上时,这不会工作。在此先感谢!

解决方案



Does anybody a method to navigate to another site? I usually use

Response.Redirect("Home.aspx");


but now i want to navigate to external url . For example i tried

Response.Redirect("https://www.google.com");

but this works only on localhost , when my site is on server this doesn't work. Thanks in advance!

解决方案



这篇关于导航到其他站点ASP.NET的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 19:39