I have an MVC application with a link to print the information. the print link is inside a javascript. code as follows: <%= Html.TextBox("Name", Model.ApplicantStatus.Name) %> <%= Html.ValidationMessage("Name", "*") %>
<script type="text/javascript">
var myEmail = "[email protected]";
var mySubject = "Sample";
var myBody = "My name is ";
var myName = Model.TableName.Name;
document.write('<a href="mailto:' + myEmail + '?subject=' + mySubject + '&body=' + myBody + myname + '">email me</a>');
</script>
basically var myName = Model.TableName.Name; is not working. any workarounds?