Append Query String Parameter Values in Current URL
I have added Hyperlink in data list.which is Bind with their Respective data.
When I Click that Hyperlink it Will Pass Url like this.
Area_id,Cuisine_Id and Veg_Id Bind in Datalist
http://localhost:49314/Search-Restaurant.aspx?Area_Id=9
http://localhost:49314/Search-Restaurant.aspx?Cuisine_Id=5
http://localhost:49314/Search-Restaurant.aspx?Veg_Id=3
I want to Built a Filter Page Which Includes Area_id, Cuisine_Id and Veg_Id
so when i Click to Hyperlink of Area then url like this.
http://localhost:49314/Search-Restaurant.aspx?Area_Id=9
And then After i click to hyperlink of Cuisine then URL Like this.
http://localhost:49314/Search-Restaurant.aspx?Area_Id=9 & Cuisine_Id=5
Similer Way
http://localhost:49314/Search-Restaurant.aspx?Area_Id=9&Cuisine_Id=5&Veg_Id=3
So Basiclly I want Filter Data With Clickable query Strings Parameter Values
Problem : How can i Make Url Like this and it is Dynamic
http://localhost:49314/Search-Restaurant.aspx?Area_Id=9&Cuisine_Id=5&Veg_Id=3
I want to Do Somting like this SitePage Filter
URL: http://delfoo.com/vadodara/search?filter_cuisine_id=12&filter_name=
Please help me...hope For Postive reply