生成真实的服务器 URL(不是 localhost)
嗨,
我使用以下内容生成完整 URL:
urlHelper.Action("Detail", "Ad", null, "http") + "?id=" + adId.ToString();
但是,即使网页放置在公共服务器 (www.mywebpage.com) 上,这也会返回本地主机 URL?
我正在使用 ASP.NET MVC 2
BestRegards
Hi,
Im using the following to generate full URL :
urlHelper.Action("Detail", "Ad", null, "http") + "?id=" + adId.ToString();
This will however return a localhost URL even when the webpage is placed on a public server (www.mywebpage.com)?
Im using ASP.NET MVC 2
BestRegards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这突然开始起作用了,我不知道为什么一开始不起作用。
This suddenly started to work, I dont know why it did not work at first.