本文介绍了在标记问题的AppSettings的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图把这个在我的标记:

 <脚本类型=文/ JavaScript的SRC =<%$的AppSettings:proxyScriptUrl%>>< / SCRIPT>

但出于某种原因,这是不能接受的。我在做什么错在这里?

的要求是,我不使用一个辅助方法,但是,我们的前pressionbuilder在标记中使用。


解决方案

按照文档,这是不允许的:

<p align="center">
  <asp:Literal runat="server" text="<%$ AppSettings: copyright %>"/>
</p>

This might help you if want to do it all in the aspx file:

<script type='text/javascript' src='<asp:Literal id="literal1" runat="server" text="<%$ AppSettings: jsSource %>" />'></script>

Note the unpleasant single quotes in the text variable - trying to us escaped double quotes results in "Badly formed script tag" errors.


Edit: apologies - I've swapped the order around this does work.

这篇关于在标记问题的AppSettings的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 23:52