Posts: 198
Location: High Wycombe, Buckinghamshire, London
|
Have a link saying something like 'Sort by Price'
which goes to the page 'yourpage.aspx?sort=price'
then in your page have your script extract the querystring and sort the table. For example, C#:
Code:
SELECT * FROM table ORDER BY "+Request["sort"]+"
__________________
[ Insert witty, yet highly intelligent signature here ]
|