Click here to Skip to main content
15,891,943 members
Articles / Web Development / ASP.NET
Article

Create an ASP.NET Rounded Panel WebControl

Rate me:
Please Sign up or sign in to vote.
4.70/5 (14 votes)
25 Sep 2007GPL33 min read 128.6K   2.6K   67   32
A custom WebControl that emits CSS to create a stylable ASP.NET panel with rounded corners.
Screenshot - RoundedPanel.jpg

Introduction

There are perhaps hundreds of ideas on the internet regarding how to make those sleek rounded "Web 2.0" panels (as depicted above) that can be seen on millions of websites these days. Undoubtedly, there are many server controls that do the same thing. I've seen some good, and most bad. This was my attempt at creating a sleek solution to what certainly should be a simple problem.

Background

Because there is no one "right" answer to making rounded corners, I opted for what I deemed to be the simplest and highest performance solution. From a scalability standpoint, it didn't make sense to have to do it with images. While I'm a fan of JavaScript, I wanted to plan for the times when the client has JavaScript turned off. Sure, it's rare, but it happens. Finally, I wanted to encapsulate all of this functionality into a drag-n-drop server control that would require minimal configuration in Visual Studio and, of course, be cross-browser compliant.

Because I'm no CSS genius, I looked around on the web to find a few solutions that did what I wanted to do. I really just wanted pure CSS, and, as I said above, no images or JavaScript. I found exactly what I wanted on Stu Nicholls' website, CSSPlay. He had an elegant CSS solution that seemed like it would work well inside of a web control. And, since he didn't mind anyone using his code, I thought this would be the best approach. Thanks, Stu!

Inside the Code

The control itself contains only five properties and one overridden method. I allow the user to configure the Panel Border Color, Panel Text Color, Panel Inner Background Color, Panel Outer Background Color and the text inside of the panel. Sure, you can nest controls in the panel (it inherits from the ASP Panel control), but sometimes you don't want to have to configure a label control. Setting the text makes it simpler.

The method simply overrides the RenderContents method to output the CSS I needed nested in style tags, and the divs and nested tags that comprise the panel. I changed the CSS to reference elements by its unique Client ID, so it becomes feasible to have several panels on a page that have varying styles (as in the screenshot above). All the rest of the design functionality is inherited from the Panel control, including visibility.

On a final note, I made sure to render any child controls between paragraph tags. It makes the final panel rendering nice and neat. Yes, you can also use output.WriteBeginTag("p"); if you so choose. I like output.Write();

C#
if (HasControls())
{
     output.Write("<p>");
     this.RenderChildren(output);
     output.Write("</p>");
}

Using the Code

I included the output DLL (Web2Controls.dll) in the downloadable source as well as the code file. You can simply add it to your toolbox, drag the control on your page, and start adding nested controls. All of the properties are located under the "Rounded Panel" category, and have defaults set. The panel also accounts for differing height and width units. You can use percentages or pixels with either. Because it inherits its designer attributes from the Panel control, you won't get a graphic representation of the panel (color and style wise) until you run it. It will simply display as any Panel would, and you can drag or drop controls on it.

I tested this in IE6, IE7 and Firefox, and didn't have any problems. I don't have Opera or Safari installed locally, so if any of you test with those platforms, I'd be interested to hear your results.

Happy UI'ing!

History

  • 9/25/07 - Removed a stray paragraph tag that was in for testing
  • 9/22/07 - Added closing div tag to output rendering

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) CentralReach
United States United States
I have worked professionally in IT since 2004, and as a software architect since 2008, specializing in user interface design and experience, something I am still extremely passionate about. In 2013 I moved into management, and since then I've held positions as Director of Product Development, Director of Engineering, and Practice Director.

Comments and Discussions

 
GeneralRe: Does not render properly Pin
DaProgramma25-Sep-07 2:26
DaProgramma25-Sep-07 2:26 
GeneralPanel clash with DropDownList Pin
MohammadHafizullah23-Sep-07 15:21
MohammadHafizullah23-Sep-07 15:21 
GeneralRe: Panel clash with DropDownList Pin
DreamInHex24-Sep-07 1:49
DreamInHex24-Sep-07 1:49 
GeneralRe: Panel clash with DropDownList Pin
stixoffire14-Dec-07 1:43
stixoffire14-Dec-07 1:43 
GeneralTiny issue Pin
MikeRetzler21-Sep-07 3:30
MikeRetzler21-Sep-07 3:30 
GeneralRe: Tiny issue Pin
DreamInHex21-Sep-07 4:45
DreamInHex21-Sep-07 4:45 
Questionthanx, really cool, but... Pin
barbod_blue19-Sep-07 1:28
barbod_blue19-Sep-07 1:28 
AnswerRe: thanx, really cool, but... Pin
DreamInHex19-Sep-07 9:05
DreamInHex19-Sep-07 9:05 
The source code is with it. If you want to inject the style in the head of the page or link to it, just cut it out of the RenderContent method, paste it into a CSS file and you should be good to go.

If you follow the link I included above to CSS play, the styles are there as well.

If you're trying to get AJAX to work on the site, I'd suggest trying out Anthem instead of the ATLAS controls. Personally, I find them a lot easier and more intuitive to use. You can read more about it at http://www.anthemdotnet.com[^].

Quae narravi nullo modo negabo.

GeneralRe: thanx, really cool, but... Pin
barbod_blue19-Sep-07 19:13
barbod_blue19-Sep-07 19:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.