Web Development Blog

SWFObject.Net 1.0.0.1 released

SWFObject.NET 1.0.0.1 has been released. SWFObject.NET is a C# ASP.NET server control that wraps the functionality of the SWFObject 2.1 JavaScript library. SWFObject works great to avoid the ‘click to activate’ problems that affected IE6, IE7 and Opera 9+.

Strong named assembly does not allow partially trusted callers

When you run a strong-named shared library in your project from the bin directory in a less that Full Trust environment you can run into problems. You geta security exception due to the implicit LinkDemand

Handling Tabs in Textareas across browsers

Sooner or later when you are developing a web based application you will want to enable tabs in textareas so you can format some HTML or CSS. My first thought is why is this not a function of the web browser it would make sense to have a property you could set to enable tabbing. But no you need to use JavaScript. You can find plenty of solutions searching on Google. Most solutions, like the first one I found , detect when you press the tab key cancel the event and insert a tab into the textarea instead. This method is simplistic and limited when you are used to a IDE and want to indent blocks of text.