@Html.ActionLink(item.InvoiceNumber, "SendPdfStatement", "Invoice",
new { item.InvoiceNumber }, null);
So basically that last parameter is your html attributes, if you don't need it to open in a new window...that's the only attribute in there so just pass null for the whole parameter.