Search code examples
asp.netblogengine.net

How do I reference the theme folder in blogengine.net?


I have a theme in blog engine.net I want to reference a .aspx file in an IFRAME in my theme master page (inside site.master). Something like this:

<iframe src='/blog/themes/MCO/ContactForm.aspx' frameborder='0' width='250' height='75'></iframe>

Unfortunately this absolute path doesn't work. Is there some sort of helper function to get this reference? Like:

src='<%=BlogSettings.Instance.ThemeFolder+"ContactForm.aspx" %>'

Solution

  • Try this one:

    <img src="themes/<%=BlogSettings.Instance.Theme%>/images/logo.png" />