Welcome to Bangladesh Microsoft Technology Community Sign in | Join | Help

Sunday, November 19, 2006 - Posts

Asynchronous Calls in asp.net2.0

.Net Framework 2.0 makes life so easy with asynchronous calls from pages. I remember in asp.net1.x we had to do so much to achieve the same behaviour, but we are lucky that in asp.net2.0 its very easy. Again there are more than one ways to implement asynchronous
posted by Shahed | 0 Comments

Using Reflection to Get and Set values of Properties

The assembly that is generated for .Net Framework has metadata that describes the structure of the assembly and its classes. By using reflection we can investigate the structure of classes and the data that assembly holds dynamically at runtime.
posted by Shahed | 0 Comments

Visual Studio 2005 File > Export Template

Custom templates are sometimes very handy. For example if your pages are inherited from a custom base page. Normally you would have to tweak your pages to fit your framework. Sometimes its even boaring to go and change the new pages added to the project
posted by Shahed | 0 Comments