I am using VS2010, MVC3.
I have the following jquery script to, upon clicking a button, have an ActionResult in the controller stream the pdf version of the page to a new window.
However, here is what happens:
When the page first is rendered I get the alerts: "in hereb1" and a correct url value for actionUrl.
The first time I click on the button, I get the alerts "in hereb2" and "undefined" as value for url, and a new window opens with error for undefined resource.
The third time I click on the button, I get the alerts "in hereb2" and the correct url value (same value as actionUrl), and a new window opens with expected result. No error.
Why the first click does not have access to the correct value of actionUrl?
<script type="text/javascript">
$(document).ready(function () {
alert("in hereb1");
var actionUrl = '@MvcHtmlString.Create(Html.BuildUrlFromExpressionForAreas<MyController>(c => c.GeneratePdf(Request.Url.ToString())))';
alert(actionUrl);
$("#btnPdf").click(function () {
var url = $(this).attr("href");
$(this).attr("href", actionUrl);
alert("in hereb2");
alert(url);
var win = window.open(url, "PdfVersion");
win.focus();
return false;
});
});
</script>
Thanks