如何在blogengine.net中引用主题文件夹?

时间:2011-06-30 15:15:22

标签: asp.net blogengine.net

我在博客engine.net中有一个主题我想在我的主题母版页(在site.master中)的IFRAME中引用.aspx文件。像这样:

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

不幸的是,这个绝对路径不起作用。是否有某种辅助功能来获得此参考?像:

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

3 个答案:

答案 0 :(得分:4)

试试这个:

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

答案 1 :(得分:1)

* iframe src ='/ blog / themes / MCO / ContactForm.aspx' *

为什么不尝试完整路径网址?

答案 2 :(得分:1)

上面标记的好答案实际上只适用于博客主页。 这个应该改进:

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