Click here to Skip to main content
15,893,904 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to Use the RoundedCornersExtender for a Panel Conrol with its border style??
Posted

Try this

C#
<asp:panel id="Panel1" runat="server" bordercolor="black" borderstyle="Double" xmlns:asp="#unknown">
        </asp:panel>
<ajaxToolkit:RoundedCornersExtender ID="rce" runat="server"
    TargetControlID="Panel1"
    Radius="6"
    Corners="All" />



Thanks
AShish
 
Share this answer
 
Here[^] is the documentation. Please don't tag this as AJAX, you are not using AJAX, nor does this control even use it. It's a Microsoft library that sometimes uses AJAX and so is named after it. Either way, I don't see why you'd have any trouble applying this to a panel. Why is it not working ?
 
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