patel_divyesh8252-yahoo.co wrote: When i click on product image or "View Detail Button" at that time i want to pass product ID to Another page where i want to display particular product's detailed information on page
It is exactly how I explained in my initial post. You will create a page alias in the product list page (<root>/Products/{ProductID}). Then in your transformation you simply create the URL behind the "View Detail Button".
What I do is have 2 repeaters on a single page. 1 displays a list, the other displays the detail. The 1 that displays the list has the item and optional alternating item transformation set with NO where clause. The second one has the item transformation set for you details to be displayed and in the where clause you simply put ProductID = {%ProductID%}. The {% %} macro will get the ProductID url parameter automatically from the URL since you added the alias to the page.
The list repeater will need a visibility macro set. You can use this
{% if(QueryString.GetValue("ProductID") == null){true}else{false} %}
This will set visibility if it finds a productid parameter in the URL.