Thanks Kurtis,
1. Get your dynamic page via AJAX with some given query
Here is work flow,
a: when user clicks on "Result" button on the main menu,
the table is displayed in which first column is "IDs".
and url becomes
http://127.0.0.1:8080/Home/Search/b: when user clicks on any of the "IDs" on the table id results is displayed
and url becomes
http://127.0.0.1:8080/Home/Search/#RunId_TestCases%3FClickedRunId%3DThu- May-17-11%253A32%253A21-2012
Here is what I am using Jquery
$.get("RunId_TestCases",{ClickedRunId:ClickedRunId},function(data){
window.location.hash = encodeURIComponent(this.url);
ShwowTable(data[results]);
});
Url is getting changed with contents changed but, that changed url can not be used again to get the same content.
2:Modify the URL to match the query I think, this step is missing .
To do this step, should I parse the new url and read id and run $.get function again?
Regards,