I am having the following piece of code that is not working:
<a href="#" onclick="Edit(@Interest);">edit</a>
where I have
@{string Interest=""}
You need to quote the string like this:
<a href="#" onclick="Edit('@Interest');">edit</a>
2.1m questions
2.1m answers
60 comments
57.0k users