I have a skin file inside the App_Themes and also a css file . I have used a Gridview styling css and import that in the skin file.
<asp:GridView CssClass="GridViewStyle" runat="server" >
<FooterStyle CssClass="GridViewFooterStyle" />
<RowStyle CssClass="GridViewRowStyle" />
<SelectedRowStyle CssClass="GridViewSelectedRowStyle" />
<PagerStyle CssClass="GridViewPagerStyle" />
<AlternatingRowStyle CssClass="GridViewAlternatingRowStyle" />
<HeaderStyle CssClass="GridViewHeaderStyle" />
</asp:GridView>
But how can I link the css file into this skin file . I am not getting the design at runtime .
And My Web.Config file as
<pages themes="summer">
Any help