Test of ASP.Net Rounded Corners
This is a test

Wow that was easy...
<asp:Panel ID="Panel1" runat="server" BackColor="#CCCCCC" ForeColor="#000000" Height="100px" Width="200px"> This is a test </asp:Panel> <AjaxToolkit:roundedcornersextender id="Panel1_RoundedCornersExtender" runat="server" enabled="True" targetcontrolid="Panel1" />

This has Radius="20"
<asp:Panel ID="Panel2" runat="server" BackColor="#CCCCCC" ForeColor="#000000" Height="100px" Width="200px"> This has Radius="20" </asp:Panel> <AjaxToolkit:roundedcornersextender id="Roundedcornersextender1" runat="server" enabled="True" targetcontrolid="Panel2" Radius="20" />
Lets put a border on the panel and see what happens
I think we should be putting the border on the RoundedCornersExtender not the panel
<asp:Panel ID="Panel3" runat="server" BackColor="#CCCCCC" ForeColor="#000000" Height="100px" Width="200px" BorderWidth="1px" BorderColor="Red" EnableViewState="True" > Lets put a border on the panel and see what happens<br /> I think we should be putting the border on the RoundedCornersExtender not the panel<br /> </asp:Panel> <AjaxToolkit:roundedcornersextender id="Roundedcornersextender2" runat="server" enabled="True" targetcontrolid="Panel3" Radius="20" />
Lets try this the correct way...

Wow that did nothing... If I set BorderColor="solid red" it will error so I know BorderColor="red" is correct...
<asp:Panel ID="Panel4" runat="server" BackColor="#CCCCCC" ForeColor="#000000" Height="100px" Width="200px" EnableViewState="True" >Lets try this the correct way...<br /> <br /> Wow that did nothing... If I set BorderColor="solid red" it will error so I know BorderColor="red" is correct...</asp:Panel><AjaxToolkit:roundedcornersextender id="Roundedcornersextender3" runat="server" enabled="True" targetcontrolid="Panel4" Radius="20" BorderColor="red" />