Control.ResolveClientUrl(String) Method

Definition

Gets a URL that can be used by the browser.

public:
 virtual System::String ^ ResolveClientUrl(System::String ^ relativeUrl);
public string ResolveClientUrl (string relativeUrl);
abstract member ResolveClientUrl : string -> string
override this.ResolveClientUrl : string -> string
Public Function ResolveClientUrl (relativeUrl As String) As String

Parameters

relativeUrl
String

A URL relative to the current page.

Returns

A fully qualified URL to the specified resource suitable for use on the browser.

Implements

Exceptions

relativeUrl is null.

Remarks

Use the ResolveClientUrl method to return a URL string suitable for use by the client to access resources on the Web server, such as image files, links to additional pages, and so on.

Note

The URL returned by this method is relative to the folder containing the source file in which the control is instantiated. Controls that inherit this property, such as UserControl and MasterPage, will return a fully qualified URL relative to the control.

Applies to