Generating Integer IDs
I need to generate ID's for elements in an XML file using XSL. These need to be in Integer form (aka - not G03IDK231). It must be a number because of the XSD. I can't just use position() because I may need to reference these elements in different loops and the ID wouldn't be the same if I'm in a different loop. How can I go about getting an Integer ID for the elements? I need to basically be able to do what generate-id() does, but with numbers.
Thanks,
Stan

