User Toby Mills - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T06:38:25Zhttp://stackoverflow.com/feeds/user/12377http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1188372/strange-firefox-swfobject-display-issue0Strange Firefox SWFObject display issueToby Mills2009-07-27T14:11:48Z2009-10-28T10:06:55Z
<p>Hi,</p>
<p>I am having the strangest issue with a site i am developing. On the homepage i have a flash slide show which displays fine in IE. However it does not appear in Firefox but instead leaves a white space. </p>
<p>I am using SWFObject to display the flash. I knows its at least firing as the holding image is removed. However if i right click on the white area i get an HTML context menu not a flash menu which suggests its not even writing the flash object to the page let alone loading the flash SWF file.</p>
<p>If i save the source of the homepage to a static HTML and upload that to the server it works fine. </p>
<p>Could this be anything to do with the file encoding or http headers?</p>
<p>I've tried so many things like removing content, JS, CSS etc. The fact that a static version of the file works but the server driven ones does not is driving me mad.</p>
<p>The server is running Joomla CMS.</p>
<p>The code is:</p>
<pre><code><script type="text/javascript" src="/scripts/swfobject.js"></script>
<script type="text/javascript">swfobject.embedSWF("/flash/loader.swf", "flashContent", "960", "310", "9.0.0", "/flash/expressInstall.swf");</script>
</code></pre>
<p>HTML Code:</p>
<pre><code><div class="middle" id="flashContent">
<img class="panelBgImage" src="/images/main/Home.jpg" title="Home"/>
</div>
</code></pre>
<p>A temporary version of the site can be seen @ <a href="http://slc.synterax.com/" rel="nofollow">http://slc.synterax.com/</a> (Available until 06/08/2009)</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1188372/strange-firefox-swfobject-display-issue/1565862#15658620Answer by Toby Mills for Strange Firefox SWFObject display issueToby Mills2009-10-14T12:09:17Z2009-10-14T12:09:17Z<p>having the script in the head portion of the page certainly fixed it for me. However i have seen problems in the past with flash and firefox and swf. the only way i got around it was to reinstall flash :(</p>
<p>i take it works fine in the other browsers?</p>
http://stackoverflow.com/questions/750220/tabbed-html-application/750369#7503690Answer by Toby Mills for tabbed html applicationToby Mills2009-04-15T05:02:27Z2009-04-15T05:02:27Z<p>To answer your first 2 questions:</p>
<ol>
<li><p>iframe is supported across all the latest web browsers however i am not sure about mobile browsers. Opera mobile yes, dont now about iPhone. </p></li>
<li><p>the next major iteration of html is being led by <a href="http://www.whatwg.org/specs/web-apps/current-work/#the-iframe-element" rel="nofollow">WHATWG</a> and the iFrame will be supported. It is also supported in <a href="http://www.w3schools.com/tags/tag%5Fiframe.asp" rel="nofollow">xhtml</a></p></li>
</ol>
<p>As far as different approaches, that very much depends on what you are going to be doing with the tabs. if each tab is going to have a lot of information on it or take a while to load then separate iFrames is probably best. Also, if you are going to reuse the code as independent pages else where then iFrames are also a good option.</p>
http://stackoverflow.com/questions/738118/collecting-rss-feeds-online/746367#7463670Answer by Toby Mills for Collecting RSS Feeds Online?Toby Mills2009-04-14T04:42:44Z2009-04-14T04:52:59Z<p>I'm not sure if you have ever used it but iGoogle allows you to customise the google homepage to display information from around the web. You can add tabs to the page to allow you to split the information up. It's extremely useful and as you can log into it from any computer / browser you can access your feeds anywhere.</p>
<p>If you have a lot of feeds of one type or feeds that update infrequently then iGoogle can also be combined with google reader. </p>
<p>It's also great for adding other plugins like gmail, games, Dilbert :) and more.</p>
<p>To create an iGoogle page go to the google home page and click the iGoogle link in the top right corner. iGoogle will then provide you with a starter page and some suggested content which you can add or ignore. If you click the "Add Stuff" link then "Add feed or gadget" you can manually add all your RSS feeds. However, you can also configure Firefox to automatically select google as your RSS reader when ever you click on an RSS feed icon in the navigation bar. You can select / change this under Tools -> Options -> Applications -> Web Feed.</p>
<p>In order to use your iGoogle on multiple browsers / computers you will need a gmail / google account however it's free and easy to create.</p>
<p>T</p>
http://stackoverflow.com/questions/464516/firefox-bookmarks-sqlite-structure1Firefox Bookmarks SQLite structureToby Mills2009-01-21T09:06:42Z2009-04-11T14:30:45Z
<p>Hi,</p>
<p>I am trying to write a Firefox 3 add-on which will enable me to easily re-tag bookmarks. For example I have some bookmarks tagged "development" and some tagged "Development" and I would like a way to easily update all the "delelopment" tags to "Development". Unfortunately I can not find an add-on to do this so I thought I would create my own. </p>
<p>Having not developed an add-on before I've managed to grasp the basics and discovered that FireFox stores all bookmarks in an SQLite database called Places.sqlite. Within that database there is a table called moz_bookmarks which contains all the bookmarks, tags and folders within the bookmarks directory. The structure of the bookmark folders and their child bookmarks is represented using a foreign key id which points to the parent folder's id in the same table which again recursses upwards to that parent folder's Id until it hits the bookmarks root. </p>
<p>However, where I become stuck is how the tags you apply in firefox are related to the bookmarks. Each tag has a type = 2 and parent ID = 4. However I can see no correlation between this and an actual bookmarks that use the tag. If I add a bookmark in firefox to no particular folder but give it 2 or 3 tags then it's parent folder ID is 5 which corresponds to "unfiled" but I can see no further correlation to the tags associated with it. </p>
<p>I have found this <a href="http://www.forensicswiki.org/index.php?title=Mozilla_Firefox_3_History_File_Format" rel="nofollow">Wiki page on the structure</a> but it does not really help.</p>
<p>It's driving me nuts :( Please help...</p>
http://stackoverflow.com/questions/733831/asp-net-how-to-dynamically-generate-labels/734144#7341440Answer by Toby Mills for ASP.NET - How to dynamically generate LabelsToby Mills2009-04-09T13:08:37Z2009-04-09T13:08:37Z<p>Sometimes its much easier just to create your own server control. that way you can control the HTML which is outputted a lot easier and have greater control over different browsers and languages with less code.</p>
http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/464575#4645754Answer by Toby Mills for What are the best-practices for making a website accesibility-friendly?Toby Mills2009-01-21T09:27:17Z2009-01-21T09:27:17Z<p>Here's a quick list I tend to follow</p>
<ul>
<li>Ensure it uses clean XHTML markup ideally to AAA standards,</li>
<li>Try where possible to spilt HTML, CSS, Javascript into respective files,</li>
<li>Create different style sheets for print, screen, etc.,</li>
<li>Ensure you take into consideration colours and fonts for the hard of sight and colour blindness,</li>
<li>Try to only place the main navigation at the top of the code so that the actual content appears near the top of the code, this way people do not have to scroll to far to see the content especially if they are using a screen reader / low res,</li>
<li>If you do have a lot of navigation before the content then place a link near the top allowing users to skip to the content,</li>
<li>Ensure the very first link on the page is to a text-only / low graphics version of the site,</li>
<li>Ensure ALL pages and all Essential functionality will work without JavaScript turned on,</li>
<li>There are lots of plugins for firefox to assist with development including:
<ul>
<li>Web Developer</li>
<li>No Script</li>
<li>HTML Validator</li>
<li>Firebug</li>
</ul></li>
<li>Ensure the page renders across all browsers including old ones even if that means it works though does not match design exactly.</li>
<li>Ensure HTML, CSS, JavaScript is kept to the minimum file size to aid downloading times e.g. Remove white space and blank lines,</li>
<li>Always use LABELS in forms and alt, title tags in links and images,</li>
<li>Only use Tables for tabular data and ensure data appropriately labelled,</li>
<li>Where possible do not use JavaScript to write content to a page but use CSS to hide it, that way is JavaScript is disabled or does not work properly then content will still appear,</li>
<li>Always ensure you use onkeypress as well as onclick events in JavaScript encase the user can not / is not using a mouse.</li>
</ul>
<p>Finally if you have to use blank images on a page for tracking etc. then don't give them Alt tags. This is my own view and is one which is hotly debated on-line especially when 1x1px images used to be used for spacing. However as far as I see it, if you are using a screen reader then you don't what it reading out stupid comments for images it does not need to see.</p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/464472#4644720Answer by Toby Mills for Best Debugging Tools for JavaScript/xulrunner DevelopmentToby Mills2009-01-21T08:47:45Z2009-01-21T08:47:45Z<p>If your using SQLite at all, especially for FireFox development then i would suggest the Firefox Addon "<a href="https://addons.mozilla.org/en-US/firefox/addon/5817" rel="nofollow">SQLite Manager</a>". Not only does it easily enable you to see profile informations stored by Firefox in user profiles but you can also open up other SQLite databases. Very useful.</p>
http://stackoverflow.com/questions/95380/is-repairing-bugs-created-by-other-people-in-the-company-a-good-way-for-software/95444#954442Answer by Toby Mills for Is repairing bugs created by other people in the company a good way for software development?Toby Mills2008-09-18T18:36:57Z2008-12-30T15:43:38Z<p>A vast majority of a developer's time is spent fixing and maintaining code and a lot of that tends to be other people's code. I feel its all part in parcel of being a developer.</p>
<p>I can freely admit that in the past I have written some terrible code in the vein of "just get it done" with (as always) the intention of going back and sorting it out, which rarely actually happens. If you come across some appalling code which can be easily improved then I would suggest trying to show the other developers the errors of their ways as well asking them why they implemented something in such a way.</p>
<p>Developement is about working as a team and not passing the blame or the buck. There are always going to be issues and better ways of doing things, that's the beauty of development :)</p>
http://stackoverflow.com/questions/396303/pattern-for-very-slow-db-server/396516#3965160Answer by Toby Mills for Pattern for very slow DB ServerToby Mills2008-12-28T18:51:44Z2008-12-28T18:51:44Z<p>You should also consider the network switches involved. If the DB server is talking to a number of web servers then it may be being constrained by the network connection speed. If they are only connected via a 100mb network switch then you may want to look at upgrading that too.</p>
http://stackoverflow.com/questions/395019/how-to-make-textarea-same-width-in-ie-and-firefox/395024#3950240Answer by Toby Mills for how to make textarea same width in IE and Firefox?Toby Mills2008-12-27T14:02:25Z2008-12-27T14:02:25Z<p>We tend to create separate style sheets for IE and FF to get around their 'quirks'. A simple bit of code can then be used to ensure the correct style sheet is used.</p>
<pre><code><!--[if lte IE 6]> works for < than IE 6
<link href="/css/IE6Below.css" media="screen" rel="Stylesheet" type="text/css" />
<![endif]-->
</code></pre>
<p>There is also
works for IE 6</p>
<p>etc...</p>
http://stackoverflow.com/questions/312347/is-seo-knowledge-important-for-web-developers/312429#31242916Answer by Toby Mills for Is SEO knowledge important for web developers?Toby Mills2008-11-23T12:00:23Z2008-11-23T12:00:23Z<p>Developers should definitely have a good knowledge of SEO techniques mainly because they are the same as good clean html development. By which i mean (to name a few) :</p>
<ul>
<li>Proper document structure, <code><h1></code> followed by <code><h2></code>, <code><p></code>, etc</li>
<li>Ensure main content appears near the top of a page,</li>
<li>Ensure page conforms to W3C accessibility standards,</li>
<li>User friendly URL's,</li>
<li>Clean separation of data, styles, client side scripting,</li>
<li>Site Map,</li>
<li>Meta data.</li>
</ul>
<p>This will not only provide you with an SEO site but also and accessible and compatible site.</p>
<p>It is important to remember that SEO is not just about coding but also content. In these cases it's best to leave this to SEO specialist and content writer.</p>
http://stackoverflow.com/questions/93888/how-do-i-explicitly-set-asp-net-sessions-to-only-expire-on-closing-the-browser-or/93968#939681Answer by Toby Mills for How do I explicitly set asp.net sessions to ONLY expire on closing the browser or explicit logou?Toby Mills2008-09-18T16:07:20Z2008-11-13T10:42:58Z<p>Unfortunately due to the explicit nature of the web and the fact there is no permanent link between a website server and a users browser it is impossible to tell when a user has closed their browser. There are events and JavaScript which you can implement (e.g. onunload) which you can use to place calls back to the server which in turn could 'kill' a session - <code>Session.Abandon();</code></p>
<p>You can set the timeout length of a session within the web.config, remember this timeout is based on the time since the last call to the server was placed by the users browser.</p>
<p>Browser timedout did not added.</p>
http://stackoverflow.com/questions/237415/linq-to-sql/259723#2597230Answer by Toby Mills for LINQ to SQL - Toby Mills2008-11-03T19:55:41Z2008-11-03T19:55:41Z<p>You may want to check to see that any fields in your database tables which are set by the db server when inserting a new record have that reflected in the Linq to SQL diagram. If you select a field on the Linq to SQL diagram and view its properties you will see a field called "Auto Generated Value" which if set to true will ensure all new records take on the default value specified in the database.</p>
http://stackoverflow.com/questions/259455/problem-with-input-typetext-and-textarea-width/259495#2594950Answer by Toby Mills for Problem with <input type='text' /> and <textarea> widthToby Mills2008-11-03T18:23:08Z2008-11-03T18:23:08Z<p>Add "padding-right:3px;" to the div so it reads as:</p>
<pre><code><div style="border: 3px solid green;padding-right:3px; width: 100px;">
</code></pre>
<p>Because you have added a border to the div that also counts as internal space of the div.</p>
<p>The reason it works without the doc declaration is that the browser does not render the page as transitional XHTML but plain old html which has a different rendering method for div's etc.</p>
http://stackoverflow.com/questions/257274/how-should-i-handle-session-timeouts-when-using-ajax-web-controls-on-an-aspx-page/259359#2593590Answer by Toby Mills for How should I handle Session timeouts when using AJAX Web controls on an Aspx page?Toby Mills2008-11-03T17:29:05Z2008-11-03T17:29:05Z<p>I think that auto-redirection is the preferable solution, mainly for obvious security reasons. </p>
<p>You could further extend the functionality by displaying an alert to the user after 18mns of inactivity warning them that their session will expire in 1 minute and providing a way of extending the session by clicking a button which in turn calls a back end page to rejuvenate the session.</p>
<p>Just before the session expires and the page redirects the user to the login page you could save the status of the user / page / account so that when they log back in they can be redirected back to the page they last viewed.</p>
http://stackoverflow.com/questions/231204/build-exit-page-using-classic-asp-avoiding-major-cross-site-scripting-pitfalls/238316#2383160Answer by Toby Mills for Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfallsToby Mills2008-10-26T17:32:03Z2008-10-26T17:32:03Z<p>You could add logic to continue page to ensure that it is only called by a page on one of your sites either based on url or IP address. You could also pass a time and hashed code through for added security.</p>
http://stackoverflow.com/questions/230789/keeping-track-of-opensource-freeweare-plugins-etc/238243#2382431Answer by Toby Mills for Keeping track of opensource/freeweare/plugins/etc.Toby Mills2008-10-26T16:48:53Z2008-10-26T16:48:53Z<p>To try out new tools / utilities you could create a virtual machine as a sandbox area. If you create a copy of the base installation then you can easily 'reset' the machine and install more apps.</p>
<p>I would also recommend creating a disk image of your basic windows environment with AV, Office, Firefox and other apps all installed so that you can easily revert your actual machine back to a clean install. If you create a seperate partition or have another HD to store data like My Docs, Software etc then wiping your machine no longer becomes a nightmare.</p>
<p>As for links i want to return to, i've created a temp bookmark folder on by toolbar where i drag and drop links i want to return to but not necessarily bookmark. You could also make use of FF3 tagging for bookmarks and create a new "temp" tag.</p>
http://stackoverflow.com/questions/231740/how-do-you-compress-objects-stored-in-session-cache/233708#2337080Answer by Toby Mills for How do you compress objects stored in session / cache?Toby Mills2008-10-24T14:16:31Z2008-10-24T14:16:31Z<p>Could you use an XML Serializer to transformed it into an XML format?</p>
http://stackoverflow.com/questions/223474/does-the-asp-net-login-control-encrypt-the-password-field/223486#2234860Answer by Toby Mills for Does the asp.net login control encrypt the password field?Toby Mills2008-10-21T21:00:08Z2008-10-21T21:00:08Z<p>The any text based data is sent as is to the server regardless of the language used by the server as this is controlled by the HTML Framework. You can create a Javascript encryption or hash algorith and use that prior to submitting the form data.</p>
<p>However the most secure method would be to use HTTPS.</p>
http://stackoverflow.com/questions/222326/how-do-you-diagnose-network-issues-on-windows/222443#2224432Answer by Toby Mills for How do you diagnose network issues on Windows?Toby Mills2008-10-21T16:07:49Z2008-10-21T16:07:49Z<p>Simple checks to run when debugging network problems:</p>
<ol>
<li>Has each machine got an IP address, Go to command prompt and run ipconfig. Key things to check here are the interfaces and ensuring the appropriate ones have IP addresses.</li>
<li>Check both machines IP addresses are in the same range and subnet if you are running it on an internal or Virtual network.</li>
<li>Try pinging each machine from the other to see if they can communicate with each other. Note that some firewalls will block ping requests.</li>
<li>If Pinging fails then check to see if firewalls are active. If the communication is within a 'safe' internal network then try disabling the firewalls and re-pinging. </li>
<li>If the connections are over a wireless network then check signal strength.</li>
<li>If pinging fails and you are connecting through several networks then try running a tracert to see at which will may show you where on the network the connection is failing.</li>
<li>If you are able to ping but not connect then check firewall settings and network connection settings. Windows 2000+ has the capability of setting port an ip access on a connection properties.</li>
<li>Try drawing a network diagram of the connections to help in visualising the problem.</li>
<li>If you are connecting through routers, firewalls and loadbalancers then check that all devices are not tied to any specific ip addresses and that the IP address redirection (if in place) is correct. Also check any NAT logs to see if connections are being received and properly re-directed.</li>
</ol>
http://stackoverflow.com/questions/104901/sharing-binary-folders-in-visual-studio1Sharing binary folders in Visual StudioToby Mills2008-09-19T19:41:54Z2008-10-11T15:01:55Z
<p>For a long time i have tried to work out the best way to access certain site files which i don't wish to be apart of a project or to ease integration with multiple developers (and talents, e.g. designers) on a single project.</p>
<p>A lot of sites i have created have had folders with large amounts of images and other binary files which i have not wanted to include in a visual studio project and/or source control mainly due to the constant updating of their contents. I have seen some people use virtual directories however there is no way to use virtual directories if you are using visual studio's built in web server. </p>
<p>As far as i see it, ideally, folders containing binaries could be located on a central server and mapped to a project. Alernatively i have considered creating separate sub-domains for each project with which all images / binaries can be refereced via, e.g. <code>http://project.client.customer.com/images</code></p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/154535/how-do-i-ensure-visual-studio-2005-displays-the-tables-and-images-correctly/163699#1636990Answer by Toby Mills for How do I ensure Visual Studio 2005 displays the tables and images correctly?Toby Mills2008-10-02T17:57:09Z2008-10-02T17:57:09Z<p>Personally i have never trusted and rarely use the design view in Visual studio and generally have it set to the code view for all pages. I tend to keep working versions of files open in IE and Firefox to enable me to see their layout however this can cause issues when trying to view multi-step forms etc. In these cases i always tend to put some code in place to enable me to select which state / step i wish to see without going through all the rigmorals of going through each step to test it.</p>
<p>Remember that in VS you can right click on a file in the project explorer and select to view it in a web browser. you can also add various different browsers to VS preferences allowing you to select the browser you wish to see the file in.</p>
<p>I realise that this is not an anwser but hope it is useful.</p>
http://stackoverflow.com/questions/134574/how-to-make-html-rendering-fast/137464#1374640Answer by Toby Mills for How to make Html rendering fast.Toby Mills2008-09-26T02:47:19Z2008-09-26T02:47:19Z<p>I would strongly suggest looking at the Yahoo <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">CSS & Javascript compressor</a> which will not only reduce your css & javascript file sizes but also raise any errors & possible duplication in your code. A definate must in any web developers tool box.</p>
http://stackoverflow.com/questions/104901/sharing-binary-folders-in-visual-studio/106429#1064290Answer by Toby Mills for Sharing binary folders in Visual StudioToby Mills2008-09-19T23:41:13Z2008-09-19T23:41:13Z<p>i have come across this article <a href="http://msdn.microsoft.com/en-us/library/aa479565.aspx" rel="nofollow">Some Techniques for Better Managing Files in Visual Studio</a> from Microsoft.</p>
http://stackoverflow.com/questions/106285/what-is-the-most-stable-least-intrusive-way-to-track-web-traffic-between-two-sit/106335#1063350Answer by Toby Mills for What is the most stable, least intrusive way to track web traffic between two sites?Toby Mills2008-09-19T23:16:55Z2008-09-19T23:16:55Z<p>You could place an onclick event on to each link that goes between each site. the onclick would then call some javascript which could do a server call back to register the click.</p>
http://stackoverflow.com/questions/103785/what-are-the-disadvantages-of-using-cassini-instead-of-iis/105947#1059470Answer by Toby Mills for What are the (dis)advantages of using Cassini instead of IIS?Toby Mills2008-09-19T21:51:29Z2008-09-19T21:51:29Z<p>You cant use virtual directories :(</p>
http://stackoverflow.com/questions/105648/wordpress-is-it-a-cms/105705#1057052Answer by Toby Mills for Wordpress.. Is it a CMS?Toby Mills2008-09-19T21:17:59Z2008-09-19T21:17:59Z<p>Yes as CMS = Content Managed System which is exactly what wordpress does, allows you to manage content on multiple pages of varying types. Yes it may be specialised for blogging although as you've pointed out this can be easily manipulated for other means.</p>
http://stackoverflow.com/questions/105434/is-it-better-to-be-paid-by-the-project-or-hourly/105456#1054561Answer by Toby Mills for Is it better to be paid by the project or hourly?Toby Mills2008-09-19T20:43:12Z2008-09-19T20:43:12Z<p>This vary much depends on the nature of the project and how many known knowns, known unknows and unknown unknows there are. If you are certain that the project wont stray and that intergration will not be an issue then per project can work best. However if you are coming into solve an issue or take over from another programmer then by the hour is best as you have no idea what your walking into and ofter end up opening a can of worms :|</p>
http://stackoverflow.com/questions/105418/what-port-is-a-given-program-using/105439#1054390Answer by Toby Mills for What port is a given program using?Toby Mills2008-09-19T20:41:06Z2008-09-19T20:41:06Z<p>most decent firewall programs should allow you to access this information. I know that Agnitum OutpostPro Firewall does.</p>
http://stackoverflow.com/questions/1188372/strange-firefox-swfobject-display-issue/1213277#1213277Comment by Toby Mills on Strange Firefox SWFObject display issueToby Mills2009-08-02T07:10:19Z2009-08-02T07:10:19Zthanks for this. i ended up going with the static code for speed but will implement your suggestion. appreciated.
thttp://stackoverflow.com/questions/1188372/strange-firefox-swfobject-display-issue/1188486#1188486Comment by Toby Mills on Strange Firefox SWFObject display issueToby Mills2009-07-28T04:56:18Z2009-07-28T04:56:18ZAll excellent questions. I used the dynamic method though will try the static method. firebug does not show the swf file being requested.
thanks
Thttp://stackoverflow.com/questions/753514/how-do-i-dynamically-load-google-analytics-javascriptComment by Toby Mills on How do I dynamically load Google Analytics JavaScript?Toby Mills2009-04-16T08:14:59Z2009-04-16T08:14:59ZWhy would you want to dynamically load it?http://stackoverflow.com/questions/464516/firefox-bookmarks-sqlite-structure/740183#740183Comment by Toby Mills on Firefox Bookmarks SQLite structureToby Mills2009-04-14T04:45:03Z2009-04-14T04:45:03Zthank you martin for returning to this question after so long. I had kinda moved on but failed to update this so thank you and keep up the good work.http://stackoverflow.com/questions/464516/firefox-bookmarks-sqlite-structure/475213#475213Comment by Toby Mills on Firefox Bookmarks SQLite structureToby Mills2009-01-29T14:09:37Z2009-01-29T14:09:37Zthanks for this comment, i had discovered this plugin. it's very useful for development and general Firefox curiosities. http://stackoverflow.com/questions/160488/asp-net-wsat-website-administration-tool-and-custom-membership-providersComment by Toby Mills on ASP.NET WSAT (Website Administration Tool) and Custom Membership ProvidersToby Mills2008-10-26T19:52:45Z2008-10-26T19:52:45Zi found setup simple and it worked. there are some items which could be improved like making it easier to turn captcha on/off and custom properties but better than i could put together :)http://stackoverflow.com/questions/18080/best-traffic-performance-usage-monitoring-module/105110#105110Comment by Toby Mills on Best traffic / performance / usage monitoring module?Toby Mills2008-10-24T17:06:24Z2008-10-24T17:06:24ZUnfortunately i have not got any figures to hand but i know that when comparing google stats to real stats there was always a large discrepancy. Im not alone either, see <a href="http://www.seomoz.org/blog/how-reliable-is-google-analytics" rel="nofollow">seomoz.org/blog/how-reliable-is-google-analytics/…</a> for example.
Server logs are the most reliable.http://stackoverflow.com/questions/231740/how-do-you-compress-objects-stored-in-session-cache/233708#233708Comment by Toby Mills on How do you compress objects stored in session / cache?Toby Mills2008-10-24T14:38:29Z2008-10-24T14:38:29Zsee <a href="http://www.dotnetjohn.com/articles.aspx?articleid=173" rel="nofollow">dotnetjohn.com/articles.aspx?articleid=173/…</a> for more infohttp://stackoverflow.com/questions/104901/sharing-binary-folders-in-visual-studio/105314#105314Comment by Toby Mills on Sharing binary folders in Visual StudioToby Mills2008-10-21T16:17:26Z2008-10-21T16:17:26Zthanks for your response, im not sure why using "web application projects" would resolve this. Could you clarify please? If binaries are held in a seperate project then how would the file paths work?http://stackoverflow.com/questions/118126/tips-for-avoiding-big-ball-of-mud-with-asp-net-webforms/118188#118188Comment by Toby Mills on Tips for avoiding big ball of mud with ASP.NET WebFormsToby Mills2008-09-23T01:03:56Z2008-09-23T01:03:56ZFor accessibility and supporting non-javascript and mobile devices you should always ensure that your forms are server side validated and javascript functions (esp multi-dropdowns) replicated server side.http://stackoverflow.com/questions/104601/asp-net-response-redirect-to-new-window/104881#104881Comment by Toby Mills on ASP.NET Response.Redirect to new windowToby Mills2008-09-19T21:44:07Z2008-09-19T21:44:07ZNope as this uses javascript to change the target of the form. Instead the page would submit as normal.http://stackoverflow.com/questions/104901/sharing-binary-folders-in-visual-studio/105314#105314Comment by Toby Mills on Sharing binary folders in Visual StudioToby Mills2008-09-19T20:33:47Z2008-09-19T20:33:47ZUnfortunately some projects require hundreds of images for CSS, general site images and flash then there can be hundreds of PDF's, Docs which are needed for the site. Including them can mean it takes ages to load a project and sync it. If your unlucky enough to use VSS then this is far more painful.http://stackoverflow.com/questions/3376/what-are-your-must-have-tools/3399#3399Comment by Toby Mills on What are your must-have tools?Toby Mills2008-09-19T20:13:37Z2008-09-19T20:13:37ZIt should be noted that google analytics is not an accurate representation of web site usage. See <a href="http://stackoverflow.com/questions/18080/best-traffic-performance-usage-monitoring-module#105110" rel="nofollow" title="best traffic performance usage monitoring module%23105110">stackoverflow.com/questions/18080/…</a> for more info.http://stackoverflow.com/questions/39256/what-web-log-file-analyzer-do-you-recommend/39271#39271Comment by Toby Mills on What web log file analyzer do you recommendToby Mills2008-09-19T20:09:53Z2008-09-19T20:09:53ZIt should be noted that google analytics is not an accurate representation of web site usage. For more info see: <a href="http://stackoverflow.com/questions/18080/best-traffic-performance-usage-monitoring-module#105110" rel="nofollow" title="best traffic performance usage monitoring module%23105110">stackoverflow.com/questions/18080/…</a>http://stackoverflow.com/questions/83073/why-not-use-tables-for-layout-in-html/83959#83959Comment by Toby Mills on Why not use tables for layout in HTML?Toby Mills2008-09-17T16:11:23Z2008-09-17T16:11:23Zsome browsers do make an attempt to render tables before they are fully downloaded which is why pages seem to change shape as more data is downloaded.