AddURLArguments - Solution Sites Routine

This function appends property/value pairs to a URL string.

Definition

Function AddURLArguments(
  byVal url,
  byRef arrParams,
  byRef arrVals)

Parameters

  • url
    A string containing a URL.
  • arrParams
    An array of strings containing the property names.
  • arrVals
    An array of strings containing the values corresponding to the property names.

Return Value

A string containing the new URL string.

Defined in File

include\std_url_lib.asp

Routines Called

None.

Called By

IsPersistentCookieAllowed

Remarks

The format of the resulting URL string is:

url?property1=value1&property2=value2

Copyright © 2005 Microsoft Corporation.
All rights reserved.