<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Insert stylesheet</Title>
      <Shortcut>Insertstylesheet</Shortcut>
      <Description>Insert stylesheet [C#]</Description>
      <Author>Robin Reekers</Author>
      <HelpUrl>/PreviewSnippet.aspx?SnippetID=79046b5a-2d7d-4bfe-a280-3e97dcd411ce</HelpUrl>
      <SnippetTypes>
        <SnippetType>SurroundsWith</SnippetType>
      </SnippetTypes>
    </Header>
    <Snippet>
      <Code Language="csharp"><![CDATA[HtmlHead head = (HtmlHead)Page.Header;
HtmlLink link = new HtmlLink();
link.Attributes.Add("href", Page.ResolveClientUrl("~/CSS/filename.css"));
link.Attributes.Add("type", "text/css");
link.Attributes.Add("rel", "stylesheet");
head.Controls.Add(link);]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>