Jaimal Chohan

Archive for the ‘Uncategorized’ Category

The Cached, Compiled, XSL Web Control

Posted by: jaimalchohan on: August 3, 2009

I’ve decided to kick this blog off again, after much time off, and for my first post … I’ll introduce my Cached, Compiled, XSL Web Control. 
Ever used the XSL control?  It looks something like this:

<asp:Xml ID="xml1" DocumentSource="/MyData.xml" TransformSource="/MyStyle.xsl" />

I was working on a XML content driven project recently where I had to do many [...]

Asynchronous Programming Part 2 – Threading

Posted by: jaimalchohan on: May 13, 2008

Threading
If you don’t know what a process is, click Crtl + Shift + Esc to bring up the task manager, click on the processes tab and you’ll see all the processes running on your PC (You might need to uncheck “Show processes from all users” to see all of the processes).
A process is a programs [...]

Asynchronous Programming Part 1 – Delegates

Posted by: jaimalchohan on: April 26, 2008

Asynchronous Programming Part 1 – Delegates
Asynchronous Programming is the ability to perform multiple operations at the same time. For example, connect to a web service whilst at the same time connecting to a database and still responding to user input (avoiding a ‘frozen’ window).

To understand and be able to use Asynchronous programming techniques there are [...]