How to Create Nifty Round corner
I have situation Create a Roundcorner for the table or div or panel ...
So in Ajax there is a built-in-control - RoundCornerExtender is available , but i have used that but i was not showing the round corner sometimes properly.
so i found this Nifty round corner was the good one, no image needed for the Round Corner.
Its full javascript., you can apply the round corner to div,panel,table etc..
Here is the Sample code
First you have to add Javascript on your page. You can get the javascript here ie: niftycube.js and niftycorner.css.
http://www.html.it/articoli/nifty/index.html
http://www.html.it/articoli/niftycube/index.html
You have to write code like this
if you use id use (#) , if you are going to use it for class user (.)
<script type="text/javascript"> window.onload=function(){ Nifty("div#box","big"); Nifty("Panel#" + '<%= contactUs_Panel.ClientID %>',"transparent"); Nifty("Panel.setround","big"); Nifty("Panel#" + '<%= callback_Panel.ClientID %>',"transparent"); Nifty("table.setround","big"); //Nifty("PopupControlExtender","big"); } </script>