Programmatically Accessing SharePoint Style Library from within C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:12:29Zhttp://stackoverflow.com/feeds/question/424739http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/424739/programmatically-accessing-sharepoint-style-library-from-within-c1Programmatically Accessing SharePoint Style Library from within C#Patrick2009-01-08T15:45:45Z2009-03-19T19:46:19Z
<p>Hi all</p>
<p>Firstly, I'm a newbie to C# and SharePoint, (less than a month's experience) so apologies if this is an obvious or easy question but I've been trawling the net for a couple of days now with absolutely no success.</p>
<p>I have an xslt file that I have stored in a subdirectory of 'Style Library' from within the new website but how can I access this from within c#?</p>
<p>I've looked at SPSite and SPWeb but neither seems able to do quite what I want.</p>
<p>Any and all help will be gratefully received.</p>
<p>Many thanks</p>
<p>c#newbie</p>
http://stackoverflow.com/questions/424739/programmatically-accessing-sharepoint-style-library-from-within-c/424769#4247691Answer by Ray Booysen for Programmatically Accessing SharePoint Style Library from within C#Ray Booysen2009-01-08T15:52:26Z2009-01-08T15:52:26Z<p>Here is a bit of code to retrieve the list items from a list:</p>
<pre><code>SPList list = web.Lists["MyLibrary"];
if (list != null)
{
var results = from SPListItem listItem in list.Items
select new
{
xxx = (string)listItem["FieldName"]),
yyy = (string)listItem["AnotherField"],
zzz = (string)listItem["Field"]
};
}
</code></pre>
<p>To retrieve a file you could also use this method on SPWeb: <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.getfileasstring.aspx" rel="nofollow">GetFileAsString</a></p>
http://stackoverflow.com/questions/424739/programmatically-accessing-sharepoint-style-library-from-within-c/424797#4247970Answer by Nick for Programmatically Accessing SharePoint Style Library from within C#Nick2009-01-08T15:56:39Z2009-01-08T15:56:39Z<p>Patrick,</p>
<p>I hope you enjoy both C# and SharePoint!</p>
<p>Check out the article <a href="http://www.scribd.com/doc/8634090/Accessing-SharePoint-Data-Using-C-Without-Running-Code-On-the-SharePoint-Server-Part-1" rel="nofollow">here</a>.</p>
<p>Read that through, and it should give you all the assistance you need.</p>
<p>Nick.</p>
http://stackoverflow.com/questions/424739/programmatically-accessing-sharepoint-style-library-from-within-c/428141#4281410Answer by Jason for Programmatically Accessing SharePoint Style Library from within C#Jason2009-01-09T14:04:21Z2009-01-09T14:04:21Z<p>without linq:</p>
<pre><code>int itemId = getItemId();
SPWeb currentWeb = SPContext.Current.Web;
SPList list = currentWeb.Lists["MyList"];
if ( list != null )
{
SPListItem theItem = list.Items.GetItemById(itemId);
doWork(theItem);
}
</code></pre>
<p>The SPWeb can be retrieved in numerous ways, using the SPContext will work if the code is called from SharePoint. To get an SPWeb object from a URL you can use SPSite object i.e.</p>
<pre><code>using ( SPSite site = new SPSite(urlToWeb) )
{
using (SPWeb web = site.OpenWeb())
{
doWork(web);
}
}
</code></pre>
<p>the 'using' statement ensures non-managed resources are reclaimed in a timely manner, by calling 'Dispose()' on the relevant objects.</p>
<p>HTH,
jt</p>
http://stackoverflow.com/questions/424739/programmatically-accessing-sharepoint-style-library-from-within-c/458144#4581440Answer by Patrick for Programmatically Accessing SharePoint Style Library from within C#Patrick2009-01-19T16:10:44Z2009-01-19T16:10:44Z<p>Hi guys</p>
<p>Many thanks for your assistance with this. I've used a little bit from each and done some additional reading and have come up with the following:</p>
<p>private static string getXsl()<br />
{<br />
string xslString = null;<br />
using (StreamReader streamReader = new StreamReader(File.Open(HttpContext.Current.Server.MapPath(@"~_layouts\theXSL.xslt"), FileMode.Open)))<br />
{<br />
xslString = streamReader.ReadToEnd();<br />
}<br />
<br />
return xslString;<br />
}<br /></p>
http://stackoverflow.com/questions/424739/programmatically-accessing-sharepoint-style-library-from-within-c/663762#6637620Answer by sbrickey for Programmatically Accessing SharePoint Style Library from within C#sbrickey2009-03-19T19:46:19Z2009-03-19T19:46:19Z<p>Effective as that may be, you should <em>really</em> look into best practices as they relate to storing documents in the 12 hive versus the content database.</p>
<p>There are much more scalable answers, which should be considered before you choose the lemming route.</p>