Sunday, 11 April 2010

Javascript: stop event propagation on click event

Question:
How to stop my click event to propagate to the document level?

I have a click event on a link and one on the div container around it. How do I prevent the click event, that I handle in the click event handler on the link, to bubble up to the container?


Wednesday, 31 March 2010

Dot.Net: List of all Supported Cultures

Question:
Do you have a list of all dot.net supported cultures?

Wednesday, 10 March 2010

Asp.Net: UpdatePanel Javascript on EndRequest

Question:
I want to trigger some javascript function after a postback of my Asp.Net UpdatePanel. How do I do this?
How to execute js after UpdatePanel postback?

Sunday, 7 March 2010

Csharp: Syntax in one file

Question:
Is there a comprehensive overview of all syntax possibilities in c# ?

Thursday, 4 March 2010

Asp.Net: Create Simple Template Control

Question:
How to build a very simple Template Control in asp.net?
Do you have a sample for simplest Template Control.
Create your own Template Controls!

Wednesday, 24 February 2010

CSharp: Dates in universal sortable format

Question:
How to format dates as sortable universal standard format strings in C#?


CSharp: Pad Numbers with Leading Zeros

Question:
How to pad a number with leading Zeros?
How to get a 8 digits number block, where empty places are filled with zeros?
Formating a number with leading zeros.