Tridion和SmartTarget:tcdl标签转换为<smarttarget:xxx>而不是<tridion:xxx>

Inm*_*ios 8 tridion tridion-2011 smarttarget

我按照SDL Live Content中的说明在Tridion 2011环境(.NET)上安装了SmartTarget 2011 SP1.

问题是,当我发布一个页面时,我所有的

<tcdl:xxxx>
Run Code Online (Sandbox Code Playgroud)

标签转换为

<smarttarget:xxx>
Run Code Online (Sandbox Code Playgroud)

坏事是

<tcdl:ComponentPresentation>
Run Code Online (Sandbox Code Playgroud)

也变成了

<smarttarget:ComponentPresentation>
Run Code Online (Sandbox Code Playgroud)

代替

<tridion:ComponentPresentation>
Run Code Online (Sandbox Code Playgroud)

我错过了什么?谢谢!

编辑添加cd_deployer_conf.xml的TCDLEngine部分(我删除了注释行):

<TCDLEngine> 
    <Properties> 
        <Property Name="tcdl.dotnet.style" Value="controls"/>  
        <Property Name="tcdl.jsp.style" Value="tags"/>  
    <Property Name="aspnet.tagprefix" Value="tridion" />
    <Property Name="aspnet.tagprefix" Value="smarttarget" />
    </Properties>  

    <TagBundle Resource="com/tridion/smarttarget/tcdl/tagbundle.xml"/>
</TCDLEngine>  
Run Code Online (Sandbox Code Playgroud)

Jer*_*ton 3

删除 Deployer 配置的以下元素:

<Property Name="aspnet.tagprefix" Value="tridion" />
<Property Name="aspnet.tagprefix" Value="smarttarget" />
Run Code Online (Sandbox Code Playgroud)