Please tell me how to get a panel with rounded corner..
I am using below code for that,but i am not getting the panel with rounded corners.If the value of Radius is increased only the Width of panel increases.
Regards,
Manjit
I am using below code for that,but i am not getting the panel with rounded corners.If the value of Radius is increased only the Width of panel increases.
Code:
Panel titlePanel = new Panel(); AjaxControlToolkit.RoundedCornersExtender roundPanel = new AjaxControlToolkit.RoundedCornersExtender(); roundPanel.ID = "roundPanel"; roundPanel.TargetControlID = titlePanel.ID; roundPanel.Radius = 5; pnlGetInfoTool.Controls.Add(roundPanel);
Manjit
Comment