Merry Christmas

I would to say Merry Christmas to everyone! All the best wishes for the new year of course too! Below this text you’ll find a little vector picture from flash-screen. Where you can find lots of 3d vector wallpapers for free! Let this be my contribution for your coming good year!

Rounded Corners

Rounded corners, are just so beautiful. When you wanted to use them, you could or generate them with JavaScript, or make some pictures in photoshop and then putting them in the background.

This is very labour intensive, especially when you have a lot rounded corners, in multiple divs. Css3 again, can make the life of web designers so much more relaxing! Because rounded corners, will become a standard soon. And of course a few browsers implemented this yet! You just have to use the browser specific prefix. (More about this when you follow the link).

Read the rest of this entry »

Browser specific prefix

We are about to release a few tutorials how to use new Css3 tags. But before we would like to publish some information you have to know when you would like to use browser specific prefixes.

Css, is developed by w3c. And to make a long (boring) story short:

  1. Contributors (authors), people all around the world think about improvement and new tags.
  2. These ideas enter the w3c groups, and people comment it, making the idea workable.
  3. After a few phases, it becomes a standard, then browsers have to implement them into their css engine.

For the moment css2 is the standard, and they are working on css3.

But some browsers like to implement not yet standard tags, because they are so promising. But because they aren’t yet standard, and the definition of how they have to work might change a little (like the box-model), they put a browser specific prefix before the tag. The effect of this is, that you can use these tags yet, but not all the browsers will perform the tag.

Read the rest of this entry »

Add hyperlink to the Bulleted List Control

This will be a very short tutorial, but still I couldn’t find any information relevant to the search: How to add hyper link to the bulleted list control.

Nevertheless this is pretty easy. We assume you want to do this in your Code-behind File, so you can add hyperlink in a list dynamically.

First create the BulletedList control, then you have to set his mode to hyperlink.

BulletedList BL = new BulletedList();
BL.DisplayMode = BulletedListDisplayMode.HyperLink;

Now that we have the control,the next code is how to add the hyperlinks. I will show how to add one. With a simple iteration you can add more, the way you might want it.

item.Text = “The text of the link”;
item.Value = “the-url.aspx”;
BL.Items.Add(item);

Good luck with your project!