Hello. I am developing a simple module with Module Creator. I have my new module running, and now I want to add a style sheet. I made a .css file and I kept it in the same folder that .ascx and code behind files.
I add this lines in my .ascx file:
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.Client.ClientResourceManagement" Assembly="DotNetNuke.Web.Client" %>
<dnn:DnnCssInclude runat="server" FilePath="~/DesktopModules/HelloWorld/estios.css" />
<link type="text/css" rel="stylesheet" href='/DesktopModules/HelloWorld/estilos.css' />
but dnn doesn´t keep the style sheet.
How can I fix it?