Posts

Showing posts from November, 2004

Netscape to merge Firefox and IE

This sounds like it could be a very good browser. Could please both those that want ActiveX support and a standards compliant browser. Although these may be mutually exclusive (as the browser will give a choice between using Netscape rendering (Gecko) or Internet Explorer rendering (Trident)). BetaNews Article | CNet News Article | MozillaZine News Article | Screenshots Edit: IE rendering engine code name, MozillaZine articles

Basic Excel Spreadsheet Generation (ASP/ASP.NET)

The 'correct' way to generate Excel spreadsheets is through the use of Office Web Components . However, due to the licensing (see MSKB Article ) you cannot use them on a public internet site (as a client license for Office is needed for each user retrieving the document). However, this can be overcome due to the fact that Excel recognises HTML code. You can therefore output HTML that can be opened in Excel: First of all, set the content type and response header to make the browser handle it as an Excel spreadsheet. ASP VBScript: <%@Language="VBScript"%> <% Response.ContentType="application/vnd.ms-excel" Response.AddHeader "content-disposition", "attachment; filename=ExcelFileName" %> ASP JScript: <%@Language="JScript"%> <% Response.ContentType="application/vnd.ms-excel"; Response.AddHeader("content-disposition", "attachment; filename=ExcelFileName"); %

Find As You Type in Firefox

Find As You Type is one of the most useful features of Firefox. This article: Get the Most Out of Firefox: Cut Through Pages With Find As You Type provides an example of how to use it. Very useful for pages with lots of text or links (like in the example shown).

User Agent Switcher Extension

The User Agent Switcher extension for Firefox has been updated. This is useful on some sites which check to see if you are using Internet Explorer, and if not, block you from using the site. You then use this to make the site think you are using IE and thus give you access.

Web Developer Extension

A new version of the Web Developer Extension for Firefox is available for download. Lots of new features in this version.

Portable Firefox / Thunderbird

There are portable versions (unofficial packages) of the Firefox browser and Thunderbird email client available. Useful for running your favourite browser/email client on a removable drive (like a USB pen drive). I wonder if there will be official versions (i.e. released by Mozilla) in the future, rather than by a third party (which may not be updated in the future, but probably will)?

British Firefox, Extensions Mirror

There is a download for Firefox for those users in the UK (rather than the default US English Version). It can be downloaded from: http://download.mozilla.org/?product=firefox&os=win&lang=en-GB . Found via: http://www.mozilla.org/products/firefox/all.html . You can also set your homepage to Google UK, with Firefox branding: http://www.google.co.uk/firefox?client=firefox-a&rls=org.mozilla:en-GB:official As well as the official extensions site ( https://update.mozilla.org/extensions/?application=firefox ), there is also a site with many more extensions listed and available for download: http://www.extensionsmirror.nl/index.php?showforum=2 You will have to add www.extensionsmirror.nl to the list of sites that are allowed to install software. To do so, find an extension you want (i.e. ConQuery ), click Install then click Edit Options in the notification bar and then click Allow , OK . Click Install again and the extension will install. You will not have to do this for a

Firefox 1.0

Firefox 1.0 is finally out. Is this the start of the new web, will it take 10% market share and will Microsoft take notice and update Internet Explorer (not just for Longhorn)? Only time will tell.

DHTML Calendar, WYSIWYG Editing in your Web Browser

A very useful DHTML calendar that can be in a popup window or appear near a button/link that you click. Appearance can be changed via CSS, and you can even navigate the calendar using the keyboard. HTMLArea is also a very good tool as it allows you to do rich text editing within the browser (Internet Explorer and Firefox/Mozilla Browser). It relies on the browsers built in capabilities. There is also a plugin that generates standards compliant XHTML/CSS called XStandard . It generates compliant, accessible code without resorting to heavy use of JavaScript to clean up the code generated by Internet Explorer's built in editor (which is what HTMLArea is based on for IE).

Set Form Enctype (ASP.NET)

This UserControl sets the EncType of the server side form on an ASP.NET page. Useful if you have another UserControl that uploads a file, as it prevents the need to change the parent page EncType (to "multipart/form-data"). Code: <%@ Control Language="C#" %> <script runat="server"> public string EncType = ""; void Page_Load(object sender, EventArgs e) { SetEncType(EncType); } protected void SetEncType(string EncType) { // continue if enctype is valid if(EncType=="text/plain" || EncType=="multipart/form-data" || EncType=="application/x-www-form-urlencoded") { Control container = this.Parent; while( container.GetType() != typeof(UserControl) && container.GetType() != typeof(HtmlForm) && container.GetType() != typeof(Page) ) { container = container.Parent; } HtmlForm form = container as HtmlForm; if ( form != null) { form.Enctype = EncType; }

A9 Toolbar

You can now search A9.com using the A9 Toolbar for Firefox. Quite a good search engine (searches books and images as well as web pages). If registered with Amazon.com (or co.uk and I assume other country specific Amazon sites) you get advanced features (bookmarks, diary, search history).