File not found error when fetching sort_desc.gif

My javascript console says:
GET localhost:17183/Equipment/codeba … t_desc.gif 404 (Not Found)

The code is apparently including the page name in the path. I am using Microsoft MVC 4.0, and I am setting the following values for the grid:

mygrid = new dhtmlXGridObject(‘mygrid_container’);
mygrid.setImagePath(“codebase/imgs/”);
mygrid.setHeader(“Model,Qty,Price”);
mygrid.setInitWidths("*,150,150");
mygrid.setColAlign(“left,right,right”);
mygrid.setSkin(“light”);
mygrid.init();

‘Equipment’ should not be in the path.

Please, provide the complete demo where the issue can be reproduced.
Here you can find a tutorial:
docs.dhtmlx.com/doku.php?id=othe … leted_demo

I changed the image page to …/stuff, and it resolved my problem.