Click here to Skip to main content
16,009,255 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
dears,

i create a website , it is contain a master page , the main issue that i want to make the content place holder's corners be rounded.........

in the beginning of the code i insert ToolkitScriptManager.
ASP.NET
<form id="form1"  runat="server" >
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</asp:ToolkitScriptManager>
Also i inserted a panel with content place holder .
ASP.NET
<asp:Panel ID="Panel1" runat="server" BackColor="white">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</asp:Panel>
and finally i add the rounded corners extender
ASP.NET
<asp:RoundedCornersExtender ID="RoundedCornersExtender1" runat="server" BorderColor="Black" Radius="10" TargetControlID="Panel1">
</asp:RoundedCornersExtender>
</form>
when i run my website , the panel appeared with it's color [white] in each page but not rounded .........WHY ??

NOTE : when i press on TargetControlID in the properties menu , panel 1 control not appeared , i type it in HTML code .
Posted
Updated 28-Feb-12 7:25am
v2

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