如果它登录的用户,它应该显示welcome, [name]
,否则显示register link
。
使用aspdotnet
店面 - 以下显示welcome,
(没有登录名)和register link
?似乎无法使其正常工作。
<xsl:when test="/root/System/CustomerFirstName!=''">
Welcome, <a href='/account.aspx'><xsl:value-of select="/root/System/CustomerFirstName" disable-output-escaping="yes" /></a>
</xsl:when>
<xsl:otherwise>
<a href='createaccount.aspx?checkout=False' class='register'>
Register </a>
</xsl:otherwise>
</xsl:choose>
我什至在这里关注了第 30 页,但无济于事。