HTML View for each record
How do I generate an HTML view for each record I have? I was hoping to use only one page and depending on the record ID, the HTML page would show the fields specific to that record.
I tried adding a "thisID" parameter to the HTML view but that is a type string which can't be compared using == to the type int ID of the record.
I want to be able to look at a list view, click on a link in it and have an HTML page open with a summary view (or something along this line) of that record.
Is this possible?