I am having the following piece of code that is not working:
edit
where I have
You need to quote the string like this:
<a href="#" onclick="Edit('@Interest');">edit</a>
If you want to call a method e.g. @Url.Action("test") for an action link, then you have to use it like:
<a href='@(Url.Action("test"))'>test</a>
Otherwise korchev's solution is right.