如果我pageBaseType="Spark.Web.Mvc.SparkView"
在我的 web.config 中添加(修复智能感知所必需的),它会以某种方式不再正确呈现链接(可能不仅如此)。
这就是它应该看起来的样子(如果未指定页面基本类型,它确实如此)=>
这是指定基本类型时的样子=>
Chrome 源代码查看器在两种情况下都显示相同的页面源代码=>
<body>
<div class="content">
<div class="navigation">
<a href="/Employee/List">Employees</a>
<a href="/Product/List">Products</a>
<a href="/Store/List">Stores</a>
<div class="navigation_title">
Navigation</div>
</div>
<div class="main">
<div class="content">
<h2>Employees</h2>Nothing found...
<a href="/Employee/Create">Create</a>
</div>
</div>
</div>
</body>
开发人员工具不=>
那么 - 为什么我的链接会被 htmlencoded(如果发生这种情况)?如果它是默认行为,那么如何呈现原始 html?
使用最新的 Spark 版本,使用 Asp.Net Mvc2 RC 程序集重建。