vote up -1 vote down star

Do you know that how to extract the site title from the link in the sharepoint?

flag
What do you mean by 'from the link in the SharePoint'? – F5ToDebug Aug 3 at 10:37

1 Answer

vote up 2 vote down

Use the SPWeb class to retrieve title property.

Sample code:

SPWeb oWebsite = SPContext.Current.Site.OpenWeb("Website_URL");
string siteTitle = oWebSite.Title;

Resources:

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.