ThreadStamp Element (View)
Windows SharePoint Services 3
Renders, in discussion boards, the current server's local time in a specific format (YYYYMMDDHHMMSS) for sorting purposes.
<ThreadStamp StripWS = "TRUE" | "FALSE"> </ThreadStamp>
The following example uses CAML to render a hidden <INPUT> element in an HTML form. The value of this element is the first 504 characters of the concatenation of the Threading variable (if present; if not, the value is an empty string), followed by the value rendered by the ThreadStamp element, which represents the current time.
<RenderPattern Name="NewPattern" DisplayName="NewPattern"> <HTML><![CDATA[<INPUT TYPE=HIDDEN NAME="]]></HTML> <FieldPrefix/> <Property Select="Name"/> <HTML>" VALUE="</HTML> <Limit Len="504" StripWS="TRUE"> <GetVar Name="Threading" StripWS="TRUE"/> <ThreadStamp StripWS="TRUE"/> </Limit> <HTML><![CDATA[">]]></HTML> </RenderPattern>