in my aspx page I have this div..
<div id="downloadableProducts" runat="server"><a href="#">Downloadedable Products</a></div>
I am trying to change the css in the code behind like this..
downloadableProducts.Style("display") = "none";
but this does not work, I get an error and red underline under downloadableProducts
in the code behind and it says 'The name 'downloadableProducts' does not exist in the current context
'
What am I doing wrong?