HTML Snippet Question

HTML Snippet Question

Hi,

I am trying to work with the the new version 5 of Zoho Creator.

I have created a page.  On that page I have an "html snippet".

I am trying to pass the record ID of a single record (as selected by a report that invokes the page url).  In the html snippet I am trying to retrieve the information of the single record to use in deluge script and resulting HTML for display.

I have created a function called Barcode that is invoked from the report but how do I "send" the record ID via the SendID variable ??

void Barcode(int SendID)
{
Open URL for the page
}

I want to use the SendID in the html snippet.

GetData = Quotes[ID == SendID];
rec_count = GetData.count();

The "SendID" in above deluge script in the html snippet is not seen as defined.

Thanks in advance for the help.