HTML Link with parameter variable

HTML Link with parameter variable

Hello All:

I am starting to develop a HTML page for a dashboard.  I am completely new to HTML but it has gone well so far.  I ran into an issue when trying to insert a HTML link to a report that I want to pass a filter parameter to.  I am able to make the link work if I set the parameter equal to a value but cannot get it to work when trying to use a variable so the link adjusts based upon the information on the HTML page.  Here is the code for the link that works when I set <Job_Number>=851005.

<a target="_blank" href=" https://creator.zoho.com/davem11/espy/#View:Budget_Distribution_Report?Job_Number= 851005"><%=(budget.sum(MH)).round(1)%></a><%}%>

What I would like to do is use variable <job> which is in the HTML page script to the link is dynamic, such as this:

<a target="_blank" href=" https://creator.zoho.com/davem11/espy/#View:Budget_Distribution_Report?Job_Number= job"><%=(budget.sum(MH)).round(1)%></a><%}%>

I have tried moving the job variable outside the quote and appending it like in the openUrl command and a cople of other options that have not worked.  Any help would be much appreciated.

Thanks,
Dave