CombineWebPaths(String,String) Method
See Also 
SourceCode.Workflow.Design.InfoPath.FormTemplate Namespace > Utilities Class > CombineWebPaths Method : CombineWebPaths(String,String) Method



path1
First path.
path2
Second path.

Glossary Item Box

Combine web paths. Paths are concatenated with a '/'.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function CombineWebPaths( _
   ByVal path1 As String, _
   ByVal path2 As String _
) As String
Visual Basic (Usage)Copy Code
Dim path1 As String
Dim path2 As String
Dim value As String
 
value = Utilities.CombineWebPaths(path1, path2)
C# 
public static string CombineWebPaths( 
   string path1,
   string path2
)
C++/CLI 
public:
static String^ CombineWebPaths( 
   String^ path1,
   String^ path2
) 

Parameters

path1
First path.
path2
Second path.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also