Password Recovery email content could not be updated

I set up Password Recovery email successfully. Later customer want to remove the user name in the email content. I removed the username part in password Recovery. Yet the password recovery email is still old email (including username) even though I restarted IIS and server:
<xsl:stylesheet version=“1.0” xmlns:xsl=“http://www.w3.org/1999/XSL/Transform” xmlns:MembershipRequest=“fba:MembershipRequest”>
<xsl:template match="/"> Membership Password Recovery

You have requested this mail because you have forgotten your password to <xsl:value-of select=“MembershipRequest:get_SiteName()” />.

You should have received a welcome email with your username.

Your temporary password is: <xsl:value-of select=“MembershipRequest:get_Password()” />


xsl:textYour temporary password can be changed immediately by logging onto the </xsl:text>
<xsl:attribute name=“href”> <xsl:value-of select=“MembershipRequest:get_ChangePasswordURL()” />
</xsl:attribute>
xsl:textChange Password Page</xsl:text>
xsl:text using your user name and temporary password.</xsl:text>

xsl:textThe ChangePassword page is located at </xsl:text>
<xsl:attribute name=“href”>
<xsl:value-of select=“MembershipRequest:get_ChangePasswordURL()” />
</xsl:attribute>
<xsl:value-of select=“MembershipRequest:get_ChangePasswordURL()” />
xsl:text.</xsl:text>


Thank you.




</xsl:template>
</xsl:stylesheet>

Make sure that you are updating the email template on the same site that the password recovery webpart is running on.

Thank you Ccoulson. I did not realize that trick. It works perfect now.