NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IWebFormsBuilderService.BuildURL

Launches the URL Picker to allow the user to build a URL.

[Visual Basic]
Function BuildURL( _
   ByVal owner As Control, _
   ByVal initialURL As String, _
   ByVal baseURL As String, _
   ByVal caption As String, _
   ByVal filter As String _
) As String
[C#]
string BuildURL(
   Control owner,
   string initialURL,
   string baseURL,
   string caption,
   string filter
);
[C++]
String* BuildURL(
   Control* owner,
   String* initialURL,
   String* baseURL,
   String* caption,
   String* filter
) = 0;
[JScript]
function BuildURL(
   owner : Control,
   initialURL : String,
   baseURL : String,
   caption : String,
   filter : String
) : String;

Parameters

owner
The control that will be used as the parent for the picker window.
initialURL
The initial or current value of the URL being built.
baseURL
The base URL used to generate relative URLs.
caption
The caption of the picker window.
filter
The filter used to select files.

Return Value

The return string. null if the picker was cancelled.

See Also

IWebFormsBuilderService Interface | IWebFormsBuilderService Members | System.Web.UI.Design Namespace