In my jQuery function I have this line to create an MVC URL:
$('#response').append("<a href=\'\@Url.Action(\"Details\",\"Member\")\'>my link</a>")
My understanding is that I need to escape the @ character in order to get the link working, but it won't let me. Is there another way to render the link I'm trying to create?
Url.Actionis C# code. Try$('#response').append('<a href="/Details/Member">my link</a>');