10 May 2012
JavaScript is a powerful and old language that was not thought to work with objects, though, we can make it a bit object oriented implementing our own objects and classes like this:
Create a class
To make a class we can directly build it a constructor and inside it place all the class properties and methods like [...]
more
27 Apr 2012
When updating a part of page using ajax with UpdatePanels, you may want to show the user that the request is being done so he can wait until it is done and not send more asynchronous requests to the server.
Placing the UpdateProgress inside the UpdatePanel
If you want to make it clear and easy that the [...]
more
24 Apr 2012
The first thing to do for using an UpdatePanel is to add a ScriptManager to the page. You can only add one and you need at least one, so you can add it to the MasterPage or just to the page using AJAX (notice the ScriptManager will add some extra scripts to your page making [...]
more
13 Mar 2012
We can use a different image as a bullet for our lists, just using something like this:
.myCustomList li { list-style-image:url('imgs/Bullet.jpg');}
So nice, unfortunately that css property has its limitations and may not fit our purposes if the image is too big or we want to show it in a special way, in that case, its better [...]
more