htmRenderBuiltInProperties - Solution Sites Routine
This function constructs an HTML representation of the built-in product price property, formatted with a string retrieved from the global MessageManager object.
Definition
Function htmRenderBuiltInProperties(
byVal rsProperties,
byVal sPropertyName,
byVal style)
Parameters
- rsProperties
A Recordset object containing the values of the properties of a product. - sPropertyName
A string containing the name of a built-in currency property, typically the product price. In the single instance where this function is called (in the file product.asp), the constant PRODUCT_PRICE_PROPERTY_NAME is passed as the value of this parameter. - style
A string containing a list of attributes to be associated with the text rendered within a FONT element. In the single instance where this function is called (in the file product.asp), the value of MSCSSiteStyle.Body is passed as the value of this parameter.
Return Value
A string containing the HTML representation of a built-in currency property value, presented in the format "S: X", where "S" is the language-specific string associated with "L_Product_Price_DisplayName_HTMLText" in the current language, and "X" is the HTML produced by the htmRenderCurrency function.
Defined in File
Routines Called
Called By
Remarks
The fact that this function renders the specified property value as a currency value and formatted with a display string designed for product prices means that it actually has a much narrower purpose than implied by its name and the presence of the sPropertyName parameter.
Copyright © 2005 Microsoft Corporation.
All rights reserved.