A parameterised stylesheet is probably an inefficient way of doing things as you will need to return the order information for all customers and then filter for the chosen customer ID. It would normally be better to query for just the relevant customer orders and then transform this into a user friendly page.
I'm not sure it is possible to do it the way you want, by passing the customer ID to the stylesheet in the querystring. Normally you would pass the ID to a server-side page, possibly JSP if you are using Java. You then retrieve the order XML, set the parameter and apply the transform.
For more advice you will have to detail your process more. Where is the processing taking place, server-side, client-side or both? What technologies are you employing?
--
Joe (
Microsoft MVP - XML)