System.Web 2.0.0.0 This interface defines the service that is used to resolve URL paths. The interface is used for resolving relative paths and paths that contain the ~ operator. Server controls that reference resources can define the paths to the resources through the ~ operator, which represents the root of the current application. A path containing the ~ operator will not work if passed to the browser. The server control must convert the path to an absolute or relative path before passing it to the browser. implements this interface. A control that derives from could override this implementation to provide customized resolution of URLs. Defines a service implemented by objects to resolve relative URLs based on contextual information. Method System.String To be added. If the specified URL is absolute, the absolute URL is returned without changes. Otherwise, the URL is converted to a relative URL that the client can resolve. Returns a resolved URL that is suitable for use by the client. A containing the resolved URL. 2.0.0.0