You have not registered your control correctly.
<%@Register Namespace="CustomGridView" TagPrefix="sc"%> is not sufficient
you need
<%@Register Namespace="CustomGridView" TagPrefix="sc" Assembly="your-control-dll-name-without-the-extension" %>
and the dll for your control must be in the /bin folder
and that assumes your ClickableGridView control is in the Namespace "CustomGridView"
Hope that helps,
Joe