Is there a way to get the root url of the current server the Share Point application is hosted on? For example, if I want to load information from a site I’m currently typing:
SPSite site = new SPSite(http://dev3);
But when I move the development code onto the production server I have to manually replace the site URLs with the new server URLs:
SPSite site = new SPSite(http://sp2010);
I’m using C# in Visual Studio 2010.
If you want to get the hostname of the current machine, it’s this:
If you’re looking for something using the SharePoint Object Model, try this: