Hi,
I've tried out creating new skins using RadStyleSheetManager by following the url:
It was working fine as i followed the url.
Later i wanted to restructure the folders available in my project based on the skin names. So i moved all the files to a separate folder TelerikSkins and moved all the images, cs file into that. But when i moved the css file in to that folder and modified the webresource as in the code snippet below, the stylesheet is not applied in the web page!
using System; |
using System.Collections.Generic; |
using System.Linq; |
using System.Text; |
using System.Web.UI; |
[assembly: WebResource("TelerikCustomSkins.TelerikSkins.TelerikSkinForComboBox.css", "text/css")] |
namespace TelerikCustomSkins |
{ |
public class TelerikSkin |
{ |
} |
} |
But when it is in the root folder of the project, it is working fine. Otherwise nothing happend!
Please let me know how to mark a css file as Web Embedded resource when it is inside a folder.
Thanks