Do you know that how to extract the site title from the link in the sharepoint?
+3
A:
Use the SPWeb class to retrieve title property.
Sample code:
SPWeb oWebsite = SPContext.Current.Site.OpenWeb("Website_URL");
string siteTitle = oWebSite.Title;
Resources:
Toni Frankola
2009-08-03 07:25:59