Is there some CSS property or something that I can use with my anchor tag so as to make it unclickable or I HAVE to do stuff in code behind to get what I want?
including an onclick="return false" attribute on the anchor element does the trick. While this solution uses javascript and not css
onclick="return false"