Click here to Skip to main content
15,887,267 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends,

as i m new to asp .net, i m having problem while making my web page division elements rounded corner....
i have read regarding the Jquery.Corner plugin...
but i m unable to use jquery.Corner plugin properly....
Can any one help me with example.
Posted
Comments
Sergey Alexandrovich Kryukov 5-Mar-12 2:37am    
Why jQuery? Do you animate corners or something? :-)
If not, this is just CSS. And what's the problem? "I'm unable to use jQuery.Corner plugin..." is not informative.
--SA

Read this:

ASP.NET Rounded Corners with jQuery [^]

hope it helps :)
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 5-Mar-12 2:51am    
This must be what OP wanted, a 5.
--SA
Please see my comment to the question. I don't see why it's so important to use this plug-in, if you just need to have rounded corners, statically.

This would help you:
http://border-radius.com/[^] (a generator, very convenient thing),
http://www.css3.info/preview/rounded-border/[^].

—SA
 
Share this answer
 
Comments
Uday P.Singh 5-Mar-12 2:42am    
5!
Sergey Alexandrovich Kryukov 5-Mar-12 2:46am    
Thank you, Uday.
--SA
XML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
    <script src=jquery-1.4.2.js></script>
    <script src="jquery.corner.js"></script>

    <script type="text/javascript">
$("div#demo").corner(); // This code will be rounded div tag id is demo
</script>

</head>
<body>

    <form id="form1" runat="server">
    <div id="demo"  class="roundbox" style="border: medium double #FF00FF; background-color: #660066">
    <h1>Hello Rounded Corner</h1>
    </div>
    </form>
</body>
</html>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900