In your "Register" server statement correct the scr element:
<%@ Register TagPrefix="userControl" TagName="NameOfTheControl"
src="subdirectory/usercontrol.ascx" %>
it should work wahtever the folder...
if you have to go up one folder start with ../subdirectory/usercontrol.ascx
Maybe your usercontrol uses some elements with src (like IMG). For use like this
it's best to make a public string property like imageFolder, to link to the
right folder. user controls (when linked to an aspx file) search for such
elements as if they would me in the folder of the ASPX file. Not as they would
be in the folder of the ASCX.