get all webapplicationName:-
string strurls = "";
SPWebApplicationCollection webapps = SPWebService.ContentService.WebApplications;
foreach (SPWebApplication webapp in webapps)
{
string WebName = webapp.DisplayName;
foreach (SPAlternateUrl url in webapp.AlternateUrls)
{
strurls = url.Uri + "";
}
}
string strurls = "";
SPWebApplicationCollection webapps = SPWebService.ContentService.WebApplications;
foreach (SPWebApplication webapp in webapps)
{
string WebName = webapp.DisplayName;
foreach (SPAlternateUrl url in webapp.AlternateUrls)
{
strurls = url.Uri + "";
}
}
No comments:
Post a Comment