我一直在使用 C. Coller 出色的CopyAsHtml-Visual Studio 插件将 C# 代码作为 html 复制到网页。
现在,我开始怀疑是否有类似的工具可以将 aspx 标记转换为有效的 html 以显示在页面上?我正在寻找的功能可以在G. Houston 的博客上看到。
前任 如果我喂这个
<asp:Button id="btnSthing" runat="server"></button>
进入上面链接中的工具,它为我生成以下内容:
<pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color:
#000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height:
14px;padding: 5px; overflow: auto; width: 100%"><code><asp:Button id="
btnSthing" runat="server"></button></code></pre>
我可以简单地将其复制并粘贴到网站中以显示使用的 aspx 标记。
如果有这种功能的工具,可以集成到 VS 中,我想听听!实现此效果的其他方法也将不胜感激!
问候,J.Arola