If you are attempting to access a blocked file type in SharePoint 2007, you will receive the following error: The following file(s) have been blocked by the administrator The following describes how to resolve the issue: Browse to the Central Admin site Select the Operations tab Under the Security Configuration section, click the link for Blocked file types Select the Web Application that you would like to modify from the drop down list Each blocked file extension displayed in the list is blocked...
If you've ever attempted to programmatically add a DOM event to the <body> tag in your ASP.NET application, you have probably noticed that there isn't an easy way to do so. The problem is that there is no way to get a reference to the body tag in the code behind. A simple solution might be to add the ID and runat="server" attributes to the body tag. This would be a nice little trick to get a reference to the <body> tag in the code behind of the current page, but what if, for example,...