So basically the html looks like this
<a href='test.pdf' Download>download test</a>
But I need this to be made in C# what I have so far is
HtmlAnchor link = new HtmlAnchor();
link.Href = "test.pdf";
link.innerText = "download test";
How do I put that "Download" part in so that when you click the link it would actually download the file and not link to it?