开发者

Relative path to a web application project in asp.net 4.0?

开发者 https://www.devze.com 2023-01-07 05:25 出处:网络
Hi all I have a project that i reference the services for my graphs...and i have hardcoded urls something like -

Hi all I have a project that i reference the services for my graphs...and i have hardcoded urls something like -

ViewData["weeklyGraphURL"] = "\"http://localhost:9713/MyProject/MyAction"+Id + "\"";

So this url is basically another projects controller action...and i have bo开发者_如何转开发th these projects in one solution...is there a way i could set a relative path to this project when I deploy it on the web server


If they are always going to live on the same machine you could look at reading the server name out of Request.ServerVariables.Get("SERVER_NAME") and replacing localhost with that.

0

精彩评论

暂无评论...
验证码 换一张
取 消