xsl IF statement using property of a serialized object

Kaizer92

New Member
Basically I want to make an if statement that only shows the date of the object if the date isn't the default (1-1-1900) I'm programming it in VB and then its all been successfully put into xsl apart from this date situation, essentially this is what I'm trying to achieve\[code\] <tr><th>DateLogged</th><th width ="500"> <xsl:if NOT = "<xsl:value-of select="DateLogged" /> = 1-1-1900"> <xsl:value-of select="DateLogged" /> </xsl:if> </th></tr> \[/code\]I've never done any xsl before today so any pointers would be very handy! Thanks
 
Back
Top