RenderImage - Solution Sites Routine

This function prepares the HTML that will render an IMG element for which other attribute values are supplied by the parameters.

Definition

Function RenderImage(
  byVal urlSource,
  byVal iWidth,
  byVal iHeight,
  byVal sDesc,
  byVal sAttList)

Parameters

  • urlSource
    A string containing a URL to be assigned to the SRC attribute.
  • iWidth
    A string containing a value to be assigned to the WIDTH attribute.
  • iHeight
    A string containing a value to be assigned to the HEIGHT attribute.
  • sDesc
    A string containing text to be assigned to the ALT attribute.
  • sAttList
    A string containing any additional, space-separated "attribute=value" pairs to be included in the IMG element. This string, if non-empty, must begin with a space character.

Return Value

A string containing the HTML that will render the specified image.

Defined in File

include\html_lib.asp

Routines Called

None.

Called By

htmRenderUserDefinedProductProperties

Copyright © 2005 Microsoft Corporation.
All rights reserved.