Hi,
I want to create different links and want to change their navigation url based on query string. for e.g.
item1.
item2
item3
when i select item1 my querystring is like www.google.com?item=item1
and when i select item2 my querystring is like www.google.com?item=item1&item=item2
but this is where i m facing problem ...now if i click on item1 again...I want it to have navigation url "currentquerystrings-(item=item1)"
i.e. in this case....
www.google.com?item=item2
so lets say if item3 is also selected and my current url is this
www.googe.com?item=item1&item=item2&item=item3
(all three selected right now)
and i m clicking on item2 so now item2 will be having url(www.google.com?item=item1&item=item3)
any idea how to achieve this? if there is any remove function kind of thing...bcoz in my xslt...i m getting all (currentquerystrings) ....I don't wanna use xslt 2
Thanks,