Thursday, March 25, 2010

Embedded Resources

When you work with embedded resource, you can use the following code to get a list of all the embedded resources in de current assembly:

foreach (string s in this.GetType().Assembly.GetManifestResourceNames())
System.Diagnostics.Debug.WriteLine(s);


More info on How to use assemlby embedded resources

Friday, March 12, 2010

Check your web.config

Check your web.config on these common mistakes which occurs in the web.configs.

IIS 7 and IIS 7.5

The IIS version for Windows Server 2008 (Vista) is IIS7 and the IIS version for Windows Server 2008 R2 (Windows 7) is IIS 7.5. read more information about specific details. At the moment it is not clear for me what the difference are for configuring a web application in IIS 7 and IIS7.5, specially for the web.config. When I know more about this, I will blog this....

Browser capabilities

Test your browser capabilities on this site. When you use the Developer Toolbar for disabling Javascript or CSS support you can see the results on this page. Also useful for crossbrowsing web development.

Monday, March 8, 2010

Name Mangling

Name Mangling is a definition which is used inside a programming language. For example: A compiler uses this, for unique identification for private fields by prefixing the private fields with the class name.