I am trying a hello world project with ASP.net MVC and jquery grid
Followed the steps as per http://haacked.com/archive/2009/04/14/using-jquery-grid-with-asp.net-mvc.aspx
Everything seems to be fine when hitting F5 from VS2008. the grid is showing the data from the db
Now, when I set up a virtual directory and pointed to the same project, no data comes up
So I tried modifying the URL property of jquery grid from
//url: '/Home/GetGridData/',
to url: '<% =Url.Action("GetGridData","~/Home") %>',
Still the data does not show up
Using fiddler, the differences when running in F5 mode and in virtual directory mode, there is the difference in the URL being requested
Virtual directory http://mymachine/dashboard/Home/GetGridData?nd=1267102919267&_search=false&rows=10&page=1&sidx=Sno&sord=asc
Now, how do i fix up this error