I have created some C# Methods and I want to use it as reference for my ASP.NET project.
The method give me a string as output. A example for a string: "C:/tracks/audio1.mp3"
Now I try to use my Method "GetTrackPath()" for my html audio tag. Simple -> I want the method output in my
How I can realize it?
ADD CODE
<audio id="a1" preload="auto" controls>
<source src="GetTrackPath()">
<audio>
Now I want to put the string into the html src tag.