Ejemplo n.º 1
0
 public void AllTracks(string SourceID)
 {
     Response.ContentType = "text/xml";
     Response.Write(VisitorManager.ConvertToXml(VisitorManager.GetAllTracks()));
 }
Ejemplo n.º 2
0
 public void FollowingTracks(int SourceID)
 {
     Response.ContentType = "text/xml";
     Response.Write(VisitorManager.ConvertToXml(VisitorManager.GetFollowingTracks(SourceID)));
 }