Hi,

im trying to build a uri and heres what i have :

C# Code:
  1. Uri Path= new Uri(PathString) ;
  2.  
  3. Player.Source=Path;
  4.  
  5. ''Just to check what did the uri come up with
  6. Label1.content= Player.Source.Tostring() ;

the path string is equal to :

D:\Documents and Settings\Prox-Yd\Mis documentos\Mi música\Pablo\carlos santana & everlast - supernatural - turn your lights on.mp3

and what the uri came up with its :

file:///D:\Documents and Settings\Prox-Yd\Mis documentos\Mi música\Pablo\carlos santana & everlast - supernatural - turn your lights on.mp3

So Player cant find the path of what the uri came up with so i cant use that, how can i remove the file:/// ?

thanks