Converts all relative url references href="myfolder/mypage.htm" into absolute url references href="http://mywebsite/myfolder/mypage.htm"

Namespace: CuteEditor
Assembly: CuteEditor (in CuteEditor.dll) Version: 6.7.0.0

Syntax

C#
public static string ConvertRelativeToAbsoluteRefs(
	string UrlRoot,
	string UrlFolder,
	string html
)
Visual Basic
Public Shared Function ConvertRelativeToAbsoluteRefs ( _
	UrlRoot As String, _
	UrlFolder As String, _
	html As String _
) As String
Visual C++
public:
static String^ ConvertRelativeToAbsoluteRefs(
	String^ UrlRoot, 
	String^ UrlFolder, 
	String^ html
)

Parameters

UrlRoot
Type: System..::..String
UrlFolder
Type: System..::..String
html
Type: System..::..String

Return Value

See Also