Archive for the ‘.Net’ Category

This post is about a simple application that I’ve created to get my hands on Silverlight 2. It is simple Digital Clock which shows local time using custom fonts and updates itself every second. My few observations that I would like to share with you: Custom Font Embedding in Silverlight Data Binding Modes and using [...]

Monday, April 13th, 2009 at 10:12 | 5 comments
Categories: .Net

Asp.net configuration file, web.config (machine.config at server level)  applies to the directory in which it appears and all sub – directories. The configuration file hierarchy for a Asp.net site goes as shown below. Here is a link where you can read more about web.config inheritance. While settings are inherited from the higher level of configuration [...]

Tuesday, March 31st, 2009 at 06:58 | 0 comments
Categories: .Net

If you ever tried or try to bind an Repeater control with a data source that have a period or dot in its one/more data item’s name then you might receive a error while binding the property using DataBinder.Eval method. For Example, I was trying to do a simple thing with Asp Repeater control (which [...]

Friday, September 5th, 2008 at 21:42 | 5 comments
Categories: .Net
Tags:

Visual Studio 2008 with .Net 3.5 has been released on November 19, 2007 and available for download at Microsoft’s Website. It is not an ordinary release with some common updates and extensions. VS2008 comes up with lots of exciting features for developers. Some of the main features are: VS 2008 Multi-Targeting Support. ASP.NET AJAX and [...]

Thursday, November 22nd, 2007 at 07:25 | 0 comments
Categories: .Net, Microsoft, News

I’ve finished my first dasblog macro that was created by me. It’s an Ajax enabled Shout-box. Still it is under testing and enhancement. Let me tell you it took me two full weekends to get this done. It was quite a good work behind this. But I am happy that I am seeing it running and [...]

Sunday, November 18th, 2007 at 18:57 | 1 comment
Categories: .Net, dasBlog

If you install IIS after .Net 2.0 or Visual studio 2005, you may receive “Failed to access IIS metabase” error. To resolve this issue either you need to install .Net framework again after IIS or you can do the following… You can use the aspnet_regiis utility comes with .Net framework 2.0. This is an administrator [...]

Tuesday, October 30th, 2007 at 17:07 | 18 comments
Categories: .Net
Tags: , ,

Recently, I have joined NIIT Technologies Ltd, New Delhi (http://www.niit-tech.com/). It’s well known around the world for its remarkable software services in Travel and Transport domain. It’s been few weeks since I have joined but no project allocated to me yet. So I decided to brush up my skills and drill down in State Management [...]

Thursday, October 25th, 2007 at 10:41 | 0 comments
Categories: .Net
Tags:

In .Net Package Class act as a container that holds multiple types of objects in the hierarchical manner. Each object in hierarchy of Package is known as its Part. Essentially, this Class eases the access of a package and its parts in more efficient and useful manner. .Net 3.0 introduced a new assembly named windowsbase.dll [...]

Monday, September 17th, 2007 at 10:01 | 0 comments
Categories: .Net, Office Open XML

Points to remember about APP_CODE Directory Asp.net handles the files in bin and app_code folder in a special way. The compiled classes (dll) placed in bin folder are automatically available to all the pages in application. We don’t need to register the assemblies to use them. Asp.net automatically detects the new version of assembly and [...]

Tuesday, August 14th, 2007 at 19:45 | 2 comments
Categories: .Net

This weekend I have added some Technical Interview questions in my site. This part is still in progress. I could have added them much earlier but there was some URL Rewriting problem. Anyway I have published them without using URL Rewrite module. You can checkout that part here – .Net Interview Questions (removed) ASP.Net Inverview [...]

Tuesday, July 17th, 2007 at 15:02 | 3 comments
Categories: .Net, Technical