User Simon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T10:17:26Z http://stackoverflow.com/feeds/user/16940 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1878076/where-is-the-right-version-of-microsoftmvcjqueryvalidation-js-for-mvc-2-beta-2 0 Where is the right version of MicrosoftMvcJQueryValidation.js for MVC 2 beta 2? Simon 2009-12-10T01:17:31Z 2009-12-10T01:17:31Z <p><code>MicrosoftMvcJQueryValidation.js</code> is used by ASP.NET MVC 2 for client side validation.</p> <p>Having problems with this file just not working properly and wondering if I have the wrong version.</p> <p>The version I am using came from the source for futures.</p> <pre><code> MicrosoftMvcJQueryValidation.js 5,626 bytes 11/17/09 10:43:12am </code></pre> <p>There are two reasons i think i have the wrong version :</p> <p>1) I actually have to call this code to get the validation routine working at all. This is because the default client validation function now embedded into <code>FormContext.cs</code> is <code>Sys.Mvc.FormValidation.enableClientValidation</code> .</p> <pre><code> ViewContext.FormContext.ClientValidationFunction = "EnableClientValidation"; </code></pre> <p>2) There is some code from jquery.validate.js which does the followin :</p> <pre><code> this.settings.errorPlacement ? this.settings.errorPlacement(label, $(element) ) : label.insertAfter(element); </code></pre> <p>This calls into this function in <code>MicrosoftMvcJQueryValidation.js</code> :</p> <pre><code> errorPlacement: function(error, element) { var messageSpan = fieldToMessageMappings[element.attr("name")]; $(messageSpan).empty(); $(messageSpan).removeClass("field-validation-valid"); $(messageSpan).addClass("field-validation-error"); error.removeClass("input-validation-error"); error.attr("_for_validation_message", messageSpan); error.appendTo(messageSpan); }, </code></pre> <p>The problem is that element has been wrapped by <code>jQuery.validate</code> with the jQuery <code>$(element)</code> expression.</p> <p>Therefore <code>element.attr("name")</code> is undefined, but <code>element[0].attr("name")</code> is valid.</p> <p>I've taken <code>MicrosoftMvcJQueryValidation.js</code> from the futures download on <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=36054" rel="nofollow">Microsoft's site</a>. `</p> <p>I cant find any other <code>MicrosoftMvcJQueryValidation</code> version - but I'm sure there must be one. Can anyone help?</p> http://stackoverflow.com/questions/711778/issues-in-trying-to-combine-view-and-edit-in-a-single-view-in-asp-net-mvc 1 Issues in trying to combine 'View' and 'Edit' in a single view in ASP.NET-MVC Simon 2009-04-02T21:59:03Z 2009-12-09T21:00:02Z <p>I have an image gallery which has the following route:</p> <pre><code> // gallery id routes.MapRoute( "gallery-route", "gallery/{galleryID}/{imageID}/{title}", new { controller = "Gallery", action = "Index", galleryID = (string)null, imageID = (string) null, title = (string) null}, new { galleryID = @"\d+" } ); </code></pre> <p>I can have URLS like :</p> <blockquote> <p>example.com/gallery/4/23 - shows gallery 4 and image 23</p> <p>example.com/gallery/4 - shows gallery 4 and first image in that gallery</p> </blockquote> <p>I was trying to make an 'edit in place' mode which lets an administrator edit the images and running into several issues. Currently the editing functionality is non-AJAX.</p> <p>1) How should i keep a 'sticky' edit mode parameter. There won't be an 'edit' button next to each image. i want the edit mode to be 'sticky', but then I'm finding I either need to set it in session or add a parameter to every single link on the page which is clumsy.</p> <p>2) I have caching enabled for this view. Therefore if i make a change and refresh - the original cached view remains.</p> <p>Can anyone give me any thoughts?</p> http://stackoverflow.com/questions/934119/track-campaigns-with-google-analytics-without-query-string-parameters 3 Track campaigns with Google Analytics without query string parameters? Simon 2009-06-01T09:28:57Z 2009-12-09T03:39:07Z <p>Is there a supported way in Google Analytics to track a campaign without having to use query string parameters.</p> <p>In Analytics you can <a href="http://www.google.com/support/analytics/bin/answer.py?hl=en&amp;answer=55518" rel="nofollow">tag a link to your site</a> with query string parameters such as <code>utm_campaign</code> and <code>utm_medium</code> which carry information about the campaign so that they can be tracked.</p> <p>Google actually has an <a href="http://www.google.com/support/analytics/bin/answer.py?answer=55578&amp;hl=en" rel="nofollow">online tool</a> to help in the creation of such links.</p> <p>For instance if StackOverflow was advertising on Experts Exchange they may have a link like this :</p> <p><a href="http://www.stackoverflow.com/?utm_source=expertexchange&amp;utm_medium=banner&amp;utm_campaign=a-better-expert-exchange" rel="nofollow">http://www.stackoverflow.com/?utm_source=expertexchange&amp;utm_medium=banner&amp;utm_campaign=a-better-expert-exchange</a> </p> <p>For many reasons I don't want these clumsy looking parameters appearing in my URLS :</p> <ul> <li>I want to encourage twittering, and long links discourage this </li> <li>I dont want people bookmarking them with campaign IDs in</li> <li>I want people to see a clean URL </li> <li>I dont want search engines indexing these links.</li> <li>I want full control about what parameters are sent to google analytics - and not leave it up to my partners to mess up the URLs they access my site with</li> </ul> <p>I looked a while ago to try to find a way wherein you could set these parameters. <a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiCampaignTracking.html" rel="nofollow">Google has a page</a> which at first glance looks like the solution, but actually isn't. That page describes how you can change the names of the query string parameters to something else - for instance to use <code>src</code> instead of <code>utm_source</code> you would run :</p> <pre><code> pageTracker._setCampSourceKey("src"); </code></pre> <p>I really cannot seem to figure out why they don't make it easy to actually explicitly set the value of the <code>utm_source</code> key - and not just set up an alternative parameter name for it.</p> <p>I remember a while back finding someone who had a kind of nasty hack, but I cant even seem to find that now. I seem to recall though that whoever it was took a copy of the analytics code and essentially branched it off and hacked at it. This is not a good solution for me!</p> <p>is there an officially supported way of doing this at all, without some kind of nasty redirects. </p> <p>In a nutshell I want to do something like this (ASP.NET MVC site). Give a partnet a link to my site with a URL like this :</p> <pre><code> http://www.example.com/?cid=2dae88a8-66b1-475d-8a35-2978bd1a158c </code></pre> <p>In the controller for my MVC page I would find out what campaign this GUID related to, and set the model state. Note: this gives me the advantage that i can change the campaign parameters without having to reissue the URL.</p> <p>In the page itself I would then do this:</p> <pre><code> var campaignMedium = &lt;%= ViewData.Model.CampaignMedium %&gt;; var campaignSource = &lt;%= ViewData.Model.CampaignSource %&gt;; var campaignName = &lt;%= ViewData.Model.CampaignName %&gt;; pageTracker._setCampaignData( { utm_source=campaignSource, utm_medium=campaignMedium, utm_campaignName=campaignName }); pageTracker._trackPageview(); </code></pre> <p><strong>IMPORTANT: This _setCampaignData method DOES NOT ACTUALLY EXIST. This is just 'pseudo code' for what I'd ideally like to be able to do.</strong></p> <p>Has anyone successfully managed to do anything like this?</p> http://stackoverflow.com/questions/1864208/is-42-a-valid-credit-card-number-jquery-validator-thinks-it-is 4 Is 42 a valid credit card number? jQuery validator thinks it is Simon 2009-12-08T02:23:21Z 2009-12-08T14:56:03Z <p>We all know that <a href="http://entertainment.howstuffworks.com/hitchhikers-history.htm" rel="nofollow">42 is the answer to everything</a>, but it's news to me that it is a valid credit card number.</p> <p>Try entering '42' or '42176' into this <a href="http://docs.jquery.com/Plugins/Validation/Methods/creditcard" rel="nofollow">jQuery Validation testing page</a> and click OK.</p> <p>What's going on? I thought this was supposed to be the de-facto validation library. Even Microsoft is using it now, but it thinks '42' and '42176' are valid credit card numbers?! It's not even doing a length check. Surely I'm not responsible for adding a length check too? It's called 'creditcard' validator and not 'luhn' validator.</p> <p><strong>Edit</strong>: hitchhiker humor aside - how would I go about patching the validation plugin to check length. is that easy?</p> http://stackoverflow.com/questions/1864084/how-do-i-extend-asp-net-mvc2-out-of-box-validation-to-validate-creditcard-email 1 How do I extend ASP.NET MVC2 out-of-box validation to validate creditcard / emails ? Simon 2009-12-08T01:43:57Z 2009-12-08T04:37:13Z <p>I've been looking at the file <code>MicrosoftMvcJQueryValidation.js</code> which is the layer between your page and the <code>jquery.validate</code> object in ASP.NET MVC 2 Beta.</p> <p>It will allow any type of validation rule supported by <a href="http://docs.jquery.com/Plugins/Validation/validate#toptions" rel="nofollow">jquery.validate</a> and had additional special handling for regularexpressions, strings, ranges and required fields. If it is a generic/unknown rule type it will just pass through the parameters like this :</p> <pre><code> default: __MVC_ApplyValidator_Unknown(rulesObj, thisRule.ValidationType, thisRule.ValidationParameters); break; </code></pre> <p>However - I cannot seem to figure out how to inject additional rules into the JSON that is generated by the framework, such as 'email'. Normally the rules just come from the attributes such as <code>[Required]</code>.</p> <p>I know there are lots of extensivbility points to replace the whole validation metadata provider - but I'm looking for a simple way.</p> <p>How can I use - for instance the 'email' or 'creditcard' validators in conjunction with a simple model like this:</p> <p>public class LoginDetails { public bool Editable { get; set; }</p> <pre><code> [Required(ErrorMessage="Please enter your email")] public string Username { get; set; } [Required(ErrorMessage="Please enter your password")] public string Password { get; set; } } </code></pre> http://stackoverflow.com/questions/1402692/chrome-vertical-scrollbar-not-working-when-url-has-at-end 0 Chrome vertical scrollbar not working when URL has # at end Simon 2009-09-09T23:35:29Z 2009-12-07T12:46:12Z <p>I've had an intermittent problem that I thought was due to un-cleared floats. What happens in Chrome (my main development browser) is the vertical scrollbar will lock in the top position and I cannot scroll down the page. Initially when the page starts to load it will allow you to scroll and then when the page is loaded it will jump back to the beginning and lock itself.</p> <p>I've just been ripping apart my pages looking for un-cleared floats and missing tags and finally found out that it is due to a URL having a # at the end (which gets programatically added and remains when I refresh the page).</p> <p>This issue only happens in chrome - does not appear to happen in other webkit browsers.</p> <p>I assume its looking for an anchor and not finding it and then giving up. Its definitely a bug but was wondering about a workaround, or why it is only doing it on my site - I can't duplicate it for instance <a href="http://shine.yahoo.com/channel/food/taste-test-ice-cream-sandwich-507442#" rel="nofollow">here</a>.</p> <p><strong>Shift click the URL to open in new browser</strong>:</p> <p>URL that will lock : <a href="http://www.rollingrazor.com/faq#" rel="nofollow">/faq#</a></p> <p>URL that doesn't lock (same but without the #): <a href="http://www.rollingrazor.com/faq" rel="nofollow">/faq</a></p> http://stackoverflow.com/questions/1566928/how-to-step-out-from-https-to-http-mode-in-asp-net-mvc/1685505#1685505 1 Answer by Simon for How to step out from https to http mode in asp.net mvc. Simon 2009-11-06T05:01:41Z 2009-12-07T00:28:10Z <p><strong>CAUTION</strong>: <a href="http://stackoverflow.com/questions/1158214/how-do-i-do-the-opposite-of-requiresslredirecttrue-in-asp-net-mvc/1685374#1685374">I had a similar question</a>. One important thing I learnt was that your auth cookie will be sent over plain text after switching back to HTTP. <a href="http://stackoverflow.com/questions/1685502/why-is-the-default-for-formsauthentications-requiressl-property-false">See this</a>.</p> <p><strong>CAUTION 2</strong> : Don't forget to consider the dreaded <a href="http://stackoverflow.com/questions/1185830/avoiding-ssl-you-are-about-to-be-redirected-to-a-connection-that-is-not-secure">You are about to be redirected to a connection that is not secure message</a></p> <p>If you're writing a bank application you need to be real careful - and also realize the increasing number of users on public wifi connections that could well [esily] be funneled through some sneaky proxy. Probably a much bigger concern for mainstream sites but a concern for us all to be aware of.</p> <p>See also <a href="http://stackoverflow.com/questions/1685502/why-is-the-default-for-formsauthentications-requiressl-property-false">my other question</a> (no answers at time of writing - but then I only just asked it!)</p> http://stackoverflow.com/questions/467855/should-an-asp-net-masterpage-get-its-data-from-the-view 3 Should an ASP.NET masterpage get its data from the view ? Simon 2009-01-22T02:21:48Z 2009-12-06T17:05:42Z <p>I've been playing around with ASP.NET MVC with a site containing a Master Page.</p> <p>I created an MVC user control called <code>ProductThumbnailControl</code>. The user control displays a product and a small thumbnail image. The View is a <code>ViewProduct</code> view which displays full product information - the usercontrol just being a UI element off to the site. </p> <pre><code> public partial class ProductThumbnailControl : System.Web.Mvc.ViewProductControl&lt;ViewProductsModel&gt; { } </code></pre> <p><a href="http://blog.matthidinger.com/2008/02/21/ASPNETMVCUserControlsStartToFinish.aspx" rel="nofollow">I read a blog entry</a> that shows how user controls consume <code>ViewData</code>. I learned that the user control can <em>automagically</em> get its model from the parent View. Since it's consuming the same data the View doesn't need to explicitly pass anything to the user control, making for cleaner markup and code.</p> <p>So now I've learned that the Master Page is using the same <code>ViewData</code> as the page. This means means the Master Page itself doesn't really have a model to help render itself.</p> <h3>Question</h3> <p>Whats the correct way for a Master Page to get its data in the first place? </p> <p>I thought about trying the following?</p> <p>You could have a <code>SiteModel</code> : </p> <pre><code>//Arbitrary properties for example class SiteModel { public string PartnerId {get; set;} public ShoppingCart ShoppingCartContents {get; set;} public string CurrentUserId {get; set;} } </code></pre> <p>The View inherits from it:</p> <pre><code>class ViewProductModel : SiteModel { public Product Product {get; set;} } </code></pre> <p><code>SiteModel</code> would be consumed by the Master Page. Views could use data from it if needed - if they needed to display the current user's email somewhere.</p> <p>Is this a horrible idea? </p> <p>Should the master page just get its data from wherever it needs it? </p> <p>What if I want to include a user control in the <code>masthead</code>?</p> <p>Where would it get its <code>ViewData</code> from since there is only one <code>ViewData</code> object for the whle page? </p> <p>Would I have to use this horrible syntax that I hate and pass the master page's user control an explicit model?</p> <pre><code>Html.RenderUserControl("~/Views/Account/UserControls/Header.ascx", null, new { SelectedItem = "Profile" }) </code></pre> <p>What's the best way to tackle this scenario?</p> http://stackoverflow.com/questions/691464/is-ie8-going-to-break-my-cdn-hosted-jquery 7 Is IE8 going to break my CDN hosted jQuery ? Simon 2009-03-27T21:13:17Z 2009-12-06T00:36:54Z <p>IE8 has a feature called <a href="http://blogs.msdn.com/ie/archive/2008/08/25/ie8-and-privacy.aspx" rel="nofollow">InPrivate Filtering</a>, which will block scripts it finds on webpages from more than 'n' different sites.</p> <p>I'm listening to the most recent '<a href="http://www.grc.com/sn/sn-189.htm" rel="nofollow">Security Now'</a> podcast which is raving about this feature as being great.</p> <p>At the very same time I'm screaming NOOO! What the *#&amp;$ -- because my site (as does many many others) includes the following (jQuery + SWFObject). i.e. I'm using <a href="http://code.google.com/apis/ajaxlibs/" rel="nofollow">Google's CDN</a> to host my jQuery.</p> <pre><code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.1/swfobject.js"&gt;&lt;/script&gt; </code></pre> <p>So whats the deal - should I stop usin jQuery and swfobject from a CDN ?</p> <p>Whats everybody else doing?</p> <p>**Edit: ** I couldn't find out if they keep a list of 'trusted sites' or not, but according to <a href="http://www.microsoft.com/windows/internet-explorer/features/browse-privately.aspx" rel="nofollow">this</a> from Microsoft the InPrivate filtering is per session. So at least someone has to actively enable it every session.</p> <blockquote> <p>InPrivate Filtering is off by default and must be enabled on a per-session basis. To use this feature, select InPrivate Filtering from the Safety menu. To access and manage different filtering options for Internet Explorer 8, select InPrivate Filtering Settings from the Safety menu. To end your InPrivate Browsing session, simply close the browser window.</p> </blockquote> http://stackoverflow.com/questions/1683/asp-net-built-in-user-profile-vs-old-stile-user-class-tables/1853330#1853330 0 Answer by Simon for ASP.NET built in user profile, Vs old stile user class/tables Simon 2009-12-05T20:19:07Z 2009-12-05T20:19:07Z <p>I think it is better off using it for supplementary data that is not critical to the user that is only normally important when that user is logging in anyway. Think data that would not break anything important if it was all wiped.</p> <p>of course thats personal preference but others have raised some other important issues.</p> <p>Also very useful considering it can be used for an unauthenticated user whose profile is maintained with an anonymous cookie.</p> http://stackoverflow.com/questions/1780538/minimizing-pci-compliance-when-my-checkout-flow-has-a-confirmation-page 0 Minimizing PCI compliance when my checkout flow has a confirmation page Simon 2009-11-23T00:19:22Z 2009-12-04T15:18:19Z <p>I have a shopping cart flow like this:</p> <ul> <li><strong>Page 1</strong>. Choose Products</li> <li><strong>Page 2</strong>. Enter address, shipping, credit card details on a single page checkout.</li> <li><strong>Page 3</strong>. User confirms the order - but we want a final opportunity to upsell, so we must be able to change the amount charged. If the user abandons this page they should not be charged OR authorized anything, but we must be able to call them and convince them to order without having to ask for their number again.</li> <li><p><strong>Page 4</strong>. Receipt page</p></li> <li><p>Repeat billing is a requirement for later, with variable amounts and schedules. (The user must be able to come back and change their schedule without entering CC number again).</p></li> </ul> <p>Here's what I <strong>dont</strong> want to do :</p> <ul> <li>Send the user to a third party page (because I want a single page checkout and retain branding)</li> <li>Minimize PCI compliance requirements</li> <li>Authorize payments and cancel them if the user doesn't confirm. This is asking for trouble on many levels!</li> </ul> <p>Since I need a confirmation page I think I will need to use some kind of tokenization system such as offered by <a href="http://www.braintreepaymentsolutions.com/pci-dss-compliance/" rel="nofollow">braintreepayments</a>. You basically store the credit card number on their service and they give you back a token that represents that number. You can then make a charge against that card at any time for any amount. This certainly seems the most flexible solution.</p> <p>I'm kind of going round in circles trying to figure out if this is the best solution or not :</p> <ul> <li>I don't know if BrainTree is the only company that offers such a service, but I'm also not convinced its really necessary.</li> <li>If I temporarily store the CC in session until the user confirms it I can still use pretty much any payment gateway. Therefore the question becomes 'does it matter if I store the CC in memory temporarily' and to what degree.</li> </ul> <p>The 'purest' safest approach seems to be to redirect to braintree (or someone else that offers a similar gateway). </p> <p><strong>Edit (after assigning bounty):</strong></p> <p>I've concluded that I absolutely have to have a system where we only need to meet level A for <a href="https://www.pcisecuritystandards.org/saq/instructions%5Fdss.shtml#instructions" rel="nofollow">PCI</a>. Been studying PCI in more detail and these questionnaires are the relevant ones for card-not-present merchants (i.e. e-commerce).</p> <p><a href="https://www.pcisecuritystandards.org/docs/pci%5Fsaq%5Fa.doc" rel="nofollow">SAQ A</a> : (when CC numbers don't even touch our server). You still have to fill out this questionnaire if you're selling online, but it is pretty easy.</p> <p><a href="https://www.pcisecuritystandards.org/docs/pci%5Fsaq%5Fd.doc" rel="nofollow">SAQ D</a> : (where CC numbers touch our server EVEN IF WE DONT STORE THEM)</p> <p>Take a look at these questionnaires reveals a huge delta between requirements. The PCI requirments are often misrepresented as being a simple list such as 'maintain a firewall', 'security policy', 'limit physical access' - but if you actually read questionnaire D you'll see it has order of magnitute more questions and requirments. For instance you have to answer whether or not your server is protected by a video camera, and what kind of data encryption you have on your server.</p> <p>I'd really appreciate knowing what <strong>actual products or providers</strong> out there that will facilitate me doing what I want to do. If there really is only 1 or 2 companies out there that let me do this then I need to know. </p> <p>I've got no relationship to Braintree except I've managed to get on their email marketing list. They're just the only company I've managed to find that does this. If you are running another company doing the same then by all means blow your own trumpet. PCI requirements are only going to become more stringent over time and anyone who has got this far reading my question probably already realizes that.</p> http://stackoverflow.com/questions/652510/change-webserver-used-by-flex-in-flexbuilder-to-net-framework-3-5 0 Change webserver used by Flex in FlexBuilder to .NET Framework 3.5 Simon 2009-03-16T23:20:11Z 2009-12-03T18:00:03Z <p>I just had to reformat and reinstall Flex and reconstruct a project.</p> <p>The problem is i am using ASP.NET as my server side technology and using LINQ in my files. The version of <code>WebDev.Webserver.exe</code> that FlexBuilder starts up is the wrong version so I get this error :</p> <blockquote> <p>Compiler Error Message: CS0234: The type or namespace name 'Linq' does not exist in the namespace 'System' (are you missing an assembly reference?)</p> <p>Microsoft (R) Visual C# 2005 Compiler version 8.00.50727.3053 for Microsoft (R) Windows (R) 2005 Framework version 2.0.50727 Copyright (C) Microsoft Corporation 2001-2005. All rights reserved.</p> </blockquote> <p>I know that changing to the latest version of ASP.NET / Framework will fix this - but I just can't figure out HOW to make that change in Flexbuilder. I cant even remember if i ever successfully did it before or if I just created a virtual directory in IIS7.</p> <p>Where would I change the version?</p> http://stackoverflow.com/questions/1823992/pop3-connection-string-for-livemail-or-gmail 0 POP3 connection string for livemail or gmail? Simon 2009-12-01T04:26:56Z 2009-12-01T05:35:49Z <p>I have a third party application that requires a 'POP 3 connection string'. I'd never heard of such a thing but apparently it looks something like this :</p> <pre><code> Line 314; connection string: {pop3.live.com:995/pop3/ssl}INBOX </code></pre> <p>or</p> <pre><code> {outlook.XXXXXXXX.net:993/imap/ssl/novalidate-cert}INBOX </code></pre> <p>The problem is I can't seem to create a connection string for some either Live mail or Gmail that works.</p> <p>The application - (which is trying to connect to the POP3 account to process email bounces) - just gives an error.</p> <p>I just cant seem to find ANY documentation anywhere about POP 3 connection strings. I assume it must be some kind of standard.</p> <p>The tech support for the product in question said "Ask Microsoft for the connection string for Windows Live mail". I don't think its worth the effort trying to ask - but hoped someone here could shed some light on the issue.</p> <p>Perhaps a POP3 connection testing tool would be useful too?</p> http://stackoverflow.com/questions/527336/tools-to-make-css-sprites 9 Tools to make CSS sprites? Simon 2009-02-09T07:23:48Z 2009-11-30T04:02:47Z <p>Are there any good tools to make css sprites?</p> <p>IDEALLY I'd want to give it a directory of images and an existing .css file that refers to those images and have it create a big image optimized with all the little images AND change my .css file to refer to those images. </p> <p>At the least I'd want it to take a directory of images and generate a big sprite and the .css necessary to use each as a background.</p> <p>Are there any good photoshop plugins or fully blown apps to do this?</p> http://stackoverflow.com/questions/479465/can-i-reformat-html-in-visual-studio-without-removing-blank-lines 1 Can I reformat HTML in Visual Studio without removing blank lines ? Simon 2009-01-26T11:26:11Z 2009-11-29T20:46:29Z <p>The HTML formatting in Visual Studio works great -- especially considering you can pick a selection and just format that. You can just select a tag or block, right click and do 'Format Selection'. You can also reformat the whole document.</p> <p>However I like to use a lot of whitespace in my documents to keep things organized and the reformat HTML compresses (deletes!) this whitespace.</p> <p>Are there any plugins, or external tools for formatting HTML that might make it possible to leave vertical space untouched?</p> <p><strong>Edit: Bonus points: If anybody has 2010 installed can they check if it already has this feature?</strong> If it DOESNT have this feature I'd like to submit a feature request. Fortunatly the new editor is much more extensible, but i dont know if that extends to customization of something liek this</p> http://stackoverflow.com/questions/1815005/custom-asp-net-mvc-validation-summary-for-address-fields 2 Custom ASP.NET MVC validation summary for address fields Simon 2009-11-29T08:31:01Z 2009-11-29T19:30:11Z <p>I'm trying to figure out the best way to validate a one page checkout. It contains :</p> <ul> <li>ship address</li> <li>billing address</li> <li>etc.</li> </ul> <p>the Address class obvious contains <code>First Name</code>, <code>Last Name</code>, <code>Street1</code>, <code>Street2</code>, <code>City</code>, <code>State</code>, <code>Zip</code>, <code>Phone</code> etc.</p> <p>Lets say the user clicks 'OK' before entering anything - then you end up with a dozen or more validation errors giving you a large block of red text that just looks ugly.</p> <p>I'd like to validate the address as a single entity, and give an intelligent error - such as 'incomplete address', or more specific errors when appropriate. But I still want to be able to highlight each individual field that has a problem. I can't see an easy way to do this right now, because obviously the <code>Html.ValidationSummary</code> helper will show every field.</p> <p>So I want to show the summary as:</p> <pre><code> "Your shipping address is incomplete" </code></pre> <p>and highlight in red <code>Zip</code> and <code>City</code>.</p> <p>I think I'd have to do a completely custom ValidationSummary, and maybe even a completely custom datastructure.</p> <p>Do any validation frameworks make such a summary easier to do, where the summary should show an intelligent summary and not just every individual field error.</p> http://stackoverflow.com/questions/1815145/need-very-simple-sequence-for-getnextordernumber-for-sql-server 0 Need very simple 'sequence' for GetNextOrderNumber for SQL Server Simon 2009-11-29T10:06:03Z 2009-11-29T18:19:02Z <p>I'm trying to make an even simpler function than the <a href="http://www.sqlmag.com/Articles/ArticleID/101339/101339.html?Ad=1" rel="nofollow">one described here</a> to get the next value of an order number for a shopping cart.</p> <ul> <li>I don't care if there are gaps</li> <li>Only completed orders get an ID (i.e. I'm deliberately not using IDENTITY)</li> <li>Obviously there must not be duplicates</li> <li>I don't care about performance and locking. If we have so many new orders that I care about lockin then I'll have other problems first</li> </ul> <p>I've found quite a few other similar questions, but not the exact solution i'm looking for.</p> <p>What I have so far is this :</p> <pre><code>USE [ShoppingCart] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Sequence_CompletedOrderID] ([val] [int] NOT NULL CONSTRAINT [DF_Sequence_CompletedOrderID_NextValue] DEFAULT ((520000)) ) ON [PRIMARY] </code></pre> <p>then for the stored proc :</p> <pre><code>CREATE PROC dbo.GetNextCompletedOrderId @nextval AS INT OUTPUT AS UPDATE dbo.sequence_completedorderid SET @nextval=val += 1; GO </code></pre> <p>Like I said I'm trying to base it on the article I linked to above - so perhaps this just a clumsy way of doing it. My SQL isn't quite up to much for even simple things like this, and its past my bedtime. Thanks!</p> http://stackoverflow.com/questions/1815145/need-very-simple-sequence-for-getnextordernumber-for-sql-server/1815311#1815311 1 Answer by Simon for Need very simple 'sequence' for GetNextOrderNumber for SQL Server Simon 2009-11-29T11:39:07Z 2009-11-29T11:56:51Z <p>The solution from @marc_s creates a new row for each number generated. At first I didnt think I liked this, but realized I can use it to my advantage.</p> <p>What I did was added a date time audit column, and also an @orderid parameter to the stored proc. For a particular <code>orderid</code> it will be guaranteed to return the same <code>completedorderid</code>, which is the number from the sequence generator.</p> <p>If for some reason my application layer requests the next id, but then crashes before it can commit the transaction - it will still be linked to that order so that when it is requested again the same number will be returned.</p> <p>This is what I ended up with:</p> <pre><code>USE [ShoppingCart] GO /****** Object: Table [dbo].[Sequence_CompletedOrderID] Script Date: 11/29/2009 03:36:40 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Sequence_CompletedOrderID]( [val] [int] IDENTITY(520000,1) NOT NULL, [CreateDt] [datetime] NOT NULL CONSTRAINT [DF_Sequence_CompletedOrderID_CreateDt] DEFAULT (getdate()), [Orderid] [int] NOT NULL CONSTRAINT [DF_Sequence_CompletedOrderID_Orderid] DEFAULT ((0)), CONSTRAINT [PK_Sequence_CompletedOrderID] PRIMARY KEY CLUSTERED ( [Orderid] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] USE [ShoppingCart] GO /****** Object: StoredProcedure [dbo].[GetCompletedOrderId] Script Date: 11/29/2009 03:34:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROC [dbo].[GetCompletedOrderId] @orderid AS INT, @completedorderid AS INT OUTPUT AS IF EXISTS (SELECT * FROM dbo.Sequence_CompletedOrderID WHERE orderid = @orderid) BEGIN SET @completedorderid =(SELECT val FROM dbo.Sequence_CompletedOrderID WHERE orderid = @orderid) END ELSE BEGIN INSERT INTO dbo.Sequence_CompletedOrderID (orderid) VALUES (@orderid) SET @completedorderid =(SELECT SCOPE_IDENTITY()) END </code></pre> http://stackoverflow.com/questions/1776338/signup-form-using-braintree-transparent-redirect/1814378#1814378 0 Answer by Simon for Signup form using Braintree Transparent Redirect Simon 2009-11-29T01:51:18Z 2009-11-29T01:51:18Z <p>OK here's what happens if JavaScript is turned off. It looks like BaseCamp chose to send the credit card via AJAX, buto also handle the situation where JavaScript is disabled and the whole form gets transmitted to them - including non payment fields.</p> <p>Thanks <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a>, and BaseCamp.</p> <ul> <li><p>User fills out form containing both payment data and anything else you might want on an HTML form for signup, shipping, shopping cart etc.</p></li> <li><p>Form is submitted to <a href="https://secure.braintreepaymentgateway.com/api/transact.php" rel="nofollow">https://secure.braintreepaymentgateway.com/api/transact.php</a></p></li> <li><p>BrainTree does its magic and adds the credit card to the vault, and passes back all information to your page. it </p></li> </ul> <p>It is doing this by actually calling a URL which you must then handle however you're handling it.</p> <pre><code>https://signup.37signals.com/basecamp/plus/signup?transparent_redirect_complete=1 &amp;signup[page]= &amp;signup[source]=basecamphq.com &amp;signup[data][first_name]=FRED &amp;signup[data][last_name]=FLINTSTONE &amp;signup[data][email_address]=FRED@BEDROCK.COM &amp;signup[data][name]=FRED &amp;signup[data][time_zone_id]=Eastern%20Time%20%28US%20%26%20Canada%29 &amp;signup[data][identity_url]= &amp;signup[data][user_name]=BAMBAM &amp;signup[data][password]=pebbles123 &amp;signup[data][confirm_password]=pebbles123 &amp;signup[data][subdomain]=bedrock.com &amp;signup[referrer_code]= &amp;signup[coupon_code]= &amp;signup[accepts_eula]=1 &amp;response=1 &amp;responsetext=Customer+Added &amp;authcode= &amp;transactionid= &amp;avsresponse= &amp;cvvresponse= &amp;orderid= &amp;type= &amp;response_code=100 &amp;customer_vault_id=1253608313 &amp;username=865251 &amp;time=20091129014038 &amp;amount= &amp;hash=63209ad25560f9a961525d65b63e31be </code></pre> <p>Presumably a response code of 100 means 'bad credit card' since I put in a fake CC number to test.</p> <p>4) You're free to redisplay the page however you want.</p> <p>Outstanding question: Hopefully the last 4 digits of the card comes back if the transaction is successful.</p> http://stackoverflow.com/questions/625161/smallcaps-multiple-fonts-and-bolding-using-drawstring-in-gdi 1 Smallcaps / multiple fonts and bolding using 'DrawString' in GDI+ Simon 2009-03-09T05:59:18Z 2009-11-29T01:24:40Z <p>I want to write out some text using <a href="http://en.wikipedia.org/wiki/Small%5Fcaps" rel="nofollow">smallcaps</a> in combination with different fonts for different words.</p> <p>To clarify I might want the message 'Welcome to our New Website' which is generated into a PNG file for the header of a page.</p> <ul> <li>The text will be <a href="http://en.wikipedia.org/wiki/Small%5Fcaps" rel="nofollow">smallcaps</a> - everything is capitalized but the 'W', 'N' and 'W' are slightly larger.</li> <li>The 'New Website' will be in a different font than the rest of the text.</li> </ul> <p>Is there a way i can do this without doing it completely manually? </p> <p>Doing something like this is conceptually what I want to do :</p> <pre><code> graphics.DrawString("&lt;font size=2&gt;W&lt;/font&gt;ELCOME TO OUR &lt;b&gt;&lt;font size=2&gt;N&lt;/font&gt;" + "EW &lt;font size=2&gt;W&lt;/font&gt;EBSITE&lt;/b&gt;"); </code></pre> <p>The best approach I could find so far <a href="http://blogs.vbcity.com/xtab/archive/2005/11/02/5669.aspx" rel="nofollow">is here</a>, but I'm worried that I'll go to all the trouble to do this manually and end up with some horrible <a href="http://en.wikipedia.org/wiki/Kerning" rel="nofollow">kerning or tracking</a> problems.</p> <p><strong>Edit:</strong> I should have mentioned that this is being done within ASP.NET so it needs to be fast and as lean as possible. I want it to be automated so I can localize easily and not have to create tonnes of little images.</p> http://stackoverflow.com/questions/286021/detecting-if-youtube-is-blocked-by-company-isp 4 Detecting if youtube is blocked by company / ISP Simon 2008-11-13T01:24:28Z 2009-11-26T16:29:11Z <p>We have Youtube videos on a site and want to detect if it is likely that they will not be able to view them due to (mostly likely) company policy or otherwise.</p> <p>We have two sites:</p> <p>1) Flex / Flash 2) HTML</p> <p>I think with Flex I can attempt to download <a href="http://youtube.com/crossdomain.xml" rel="nofollow">http://youtube.com/crossdomain.xml</a> and if it is valid XML assume the site is available</p> <p>But with HTML I dont know how to do it. I cant even think of a 'nice hack'</p> http://stackoverflow.com/questions/1218212/how-to-launch-ie8-debugger-with-debugger-command 0 How to launch IE8 debugger with debugger; command Simon 2009-08-02T05:12:19Z 2009-11-25T01:10:58Z <p>The javascript command 'debugger;' will start a debugger.</p> <pre><code> debugger; </code></pre> <p>But (with Visual Studio 2008 installed) I cannot seem to figure out how to get this to break into the IE8 debugger. It will give me a list of choices such as VS2008, VS2010, Microsoft Script debugger.</p> <p>If I do the following it will break into the (lightning fast) VS2008 debugger...</p> <pre><code> throw Error("d"); </code></pre> <p>... but I want to get it to do so when I use the 'debugger;' command. How can I do this </p> http://stackoverflow.com/questions/716552/can-you-create-a-simple-equalitycomparert-using-a-lamba-expression 4 Can you create a simple 'EqualityComparer<T>' using a lamba expression Simon 2009-04-04T05:21:31Z 2009-11-23T04:35:40Z <p>IMPORTANT : THIS IS <strong>NOT A LINQ-TO-SQL</strong> QUESTION. This is LINQ to objects.</p> <p><strong>Short question:</strong> </p> <p>Is there a simple way in LINQ to objects to get a distinct list of objects from a list based on a key property on the objects.</p> <p><strong>Long question:</strong></p> <p>I am trying to do a <a href="http://www.hookedonlinq.com/DistinctOperator.ashx" rel="nofollow"><code>Distinct()</code></a> operation on a list of <strong>objects</strong> that have a key as one of their properties.</p> <pre><code>class GalleryImage { public int Key { get;set; } public string Caption { get;set; } public string Filename { get; set; } public string[] Tags {g et; set; } } </code></pre> <p>I have a list of <code>Gallery</code> objects that contain <code>GalleryImage[]</code>.</p> <p>Because of the way the webservice works [sic] I have duplicates of the <code>GalleryImage</code> object. i thought it would be a simple matter to use <code>Distinct()</code> to get a distinct list.</p> <p>This is the LINQ query I want to use :</p> <pre><code>var allImages = Galleries.SelectMany(x =&gt; x.Images); var distinctImages = allImages.Distinct&lt;GalleryImage&gt;(new EqualityComparer&lt;GalleryImage&gt;((a, b) =&gt; a.id == b.id)); </code></pre> <p>The problem is that <code>EqualityComparer</code> is an abstract class.</p> <p>I dont want to :</p> <ul> <li>implement IEquatable on <code>GalleryImage</code> because it is generated</li> <li>have to write a separate class to implement <code>IEqualityComparer</code> as <a href="http://www.hookedonlinq.com/DistinctOperator.ashx" rel="nofollow">shown here</a></li> </ul> <p>Is there a concrete implementation of <code>EqualityComparer</code> somewhere that I'm missing?</p> <p>I would have thought there would be an easy way to get 'distinct' objects from a set based on a key.</p> http://stackoverflow.com/questions/463933/how-to-suppress-javascript-errors-for-sites-im-not-developing 3 How to suppress javascript errors for sites I'm not developing? Simon 2009-01-21T02:33:08Z 2009-11-23T04:33:02Z <p>I like to keep javascript debugging enabled in my browser so when I'm developing my own code I can instantly see when I've made an error.</p> <p>Of course this means I see errors on apple.com, microsoft.com, stackoverflow.com, cnn.com, facebook.com. Its quite fun sometimes to see just how much awful code there is out there being run by major sites but sometimes it gets really annoyed.</p> <p>I've wondered for YEARS how to change this but never really got around to it. Its particularly annoying today and I'd really like to know of any solutions.</p> <p>The only solution I have is : use a different browser for everyday browsing.</p> <p>I'm hopin theres some quick and easy plugin someone can direct me to where I can toggle it on and off based upon the domain i'm on.</p> <p><strong>Edit:</strong> I generally use IE7 for everyday browsing</p> http://stackoverflow.com/questions/463933/how-to-suppress-javascript-errors-for-sites-im-not-developing/1781103#1781103 0 Answer by Simon for How to suppress javascript errors for sites I'm not developing? Simon 2009-11-23T04:33:02Z 2009-11-23T04:33:02Z <p>Chrome doesnt bug you unless you first open the javascript debugger window</p> http://stackoverflow.com/questions/72768/how-do-you-detect-credit-card-type-based-on-number/1780382#1780382 0 Answer by Simon for How do you detect Credit card type based on number? Simon 2009-11-22T23:20:02Z 2009-11-22T23:20:02Z <p>Here's <a href="http://www.codeproject.com/KB/aspnet/UltimateCreditCardUtility.aspx" rel="nofollow">Complete C# or VB code for all kinds of CC related things</a> on codeproject.</p> <ul> <li>IsValidNumber</li> <li>GetCardTypeFromNumber</li> <li>GetCardTestNumber</li> <li>PassesLuhnTest</li> </ul> <p>This article has been up for a couple years with no negative comments.</p> http://stackoverflow.com/questions/1308194/determine-credit-card-type-by-number/1780377#1780377 0 Answer by Simon for Determine credit card type by number? Simon 2009-11-22T23:19:00Z 2009-11-22T23:19:00Z <p>Here's <a href="http://www.codeproject.com/KB/aspnet/UltimateCreditCardUtility.aspx" rel="nofollow">Complete C# or VB code for all kinds of CC related things</a> on codeproject.</p> <ul> <li>IsValidNumber</li> <li>GetCardTypeFromNumber</li> <li>GetCardTestNumber</li> <li>PassesLuhnTest</li> </ul> <p>This article has been up for a couple years with no negative comments.</p> http://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tag/1777888#1777888 0 Answer by Simon for How do you disable browser Autocomplete on web form field / input tag? Simon 2009-11-22T05:15:53Z 2009-11-22T05:15:53Z <p>In some systems where testers have to manually enter a lot of information over and over it might be useful to have the option as configurable so that when testing you can disable it and just hit 'tab > down arrow > tab > down arrow etc...'</p> http://stackoverflow.com/questions/1776654/cancellable-sort-in-net/1776737#1776737 1 Answer by Simon for Cancellable Sort in .NET ? Simon 2009-11-21T20:49:27Z 2009-11-21T20:49:27Z <p>depending completely upon the environment in question - one approach is to let the user cancel waiting for the sort (which is running on a separate thread) but you secretly continue sorting the list in the background and then tell them when its finished with a subtle notification. </p> http://stackoverflow.com/questions/1003350/why-is-chrome-searching-for-my-favicon-ico-when-i-serve-up-a-file-from-asp-net-mv/1774632#1774632 0 Answer by Simon for Why is Chrome searching for my favicon.ico when I serve up a file from ASP.NET MVC? Simon 2009-11-21T05:44:20Z 2009-11-21T05:44:20Z <p>Its important to put in an ICON link into your masterpage or some browsers will try to find favicon.ico for all directories and not just globally once per done. </p> <pre><code> &lt;link rel="SHORTCUT ICON" href="&lt;%= Url.Content("~/content/images/rr-favicon.ico") %&gt;"/&gt; </code></pre> <p>It seems google toolbar is the guilty party judging by my logs (and IE6 of course). They both will make requests for directories other than the root </p> <pre><code> Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Mozilla/4.0 (compatible; GoogleToolbar 6.2.1910.1554; Windows 6.0; MSIE 8.0.6001.18828) </code></pre> http://stackoverflow.com/questions/556483/clear-anonymousidentification/1619412#1619412 Comment by Simon on Clear anonymousIdentification? Simon 2009-12-08T23:24:30Z 2009-12-08T23:24:30Z note: as far as i can tell the two can coexist just fine - so you may not want to remove it. don't just assume that you need to remove it just because you've logged someone in. you can even link the two profiles on the back end - nobody can tell this from client side but it may be useful to track users. http://stackoverflow.com/questions/1402692/chrome-vertical-scrollbar-not-working-when-url-has-at-end/1859757#1859757 Comment by Simon on Chrome vertical scrollbar not working when URL has # at end Simon 2009-12-08T15:54:29Z 2009-12-08T15:54:29Z thanks for this. thought i was alone. i've pretty much eliminated # by making sure to always return false - i'll try this out too though just in case i forgot one http://stackoverflow.com/questions/1864084/how-do-i-extend-asp-net-mvc2-out-of-box-validation-to-validate-creditcard-email/1864622#1864622 Comment by Simon on How do I extend ASP.NET MVC2 out-of-box validation to validate creditcard / emails ? Simon 2009-12-08T06:15:35Z 2009-12-08T06:15:35Z wasnt especially impressed AT ALL with jquery.validate's credit card validation (see <a href="http://stackoverflow.com/questions/1864208" rel="nofollow">stackoverflow.com/questions/1864208</a>). i may just do an onblur do it manually. this is probably a good solution for email though http://stackoverflow.com/questions/1864208/is-42-a-valid-credit-card-number-jquery-validator-thinks-it-is Comment by Simon on Is 42 a valid credit card number? jQuery validator thinks it is Simon 2009-12-08T03:07:08Z 2009-12-08T03:07:08Z @paul there are 42 known recorded accounts of that happening but i only heard about 42 of them http://stackoverflow.com/questions/1864208/is-42-a-valid-credit-card-number-jquery-validator-thinks-it-is/1864223#1864223 Comment by Simon on Is 42 a valid credit card number? jQuery validator thinks it is Simon 2009-12-08T02:49:12Z 2009-12-08T02:49:12Z @ed unfortunately yes :-/ http://stackoverflow.com/questions/1864208/is-42-a-valid-credit-card-number-jquery-validator-thinks-it-is/1864232#1864232 Comment by Simon on Is 42 a valid credit card number? jQuery validator thinks it is Simon 2009-12-08T02:37:16Z 2009-12-08T02:37:16Z but the problem is if you've already got it wrong once - as you begin to start typing to correct it it will tell you <i>as youre typing</i> that its correct, and then wrong, and then correct again. all credit cards must be at least 15 characters right - so why isnt it making a check. i have the source i suppose but it just makes me weary of using this library overall. http://stackoverflow.com/questions/799511/how-to-simulate-server-transfer-in-asp-net-mvc/1180744#1180744 Comment by Simon on How to simulate Server.Transfer in ASP.NET MVC? Simon 2009-12-08T01:45:32Z 2009-12-08T01:45:32Z im torn as to who to give points to - but need to get my accept ratio higher. thanks stan and markus! please also see my addition to them both : <a href="http://stackoverflow.com/questions/799511/how-to-simulate-server-transfer-in-asp-net-mvc/1242525#1242525" rel="nofollow" title="how to simulate server transfer in asp net mvc">stackoverflow.com/questions/799511/&hellip;</a> http://stackoverflow.com/questions/249074/how-to-change-onclick-handler-dynamically/249091#249091 Comment by Simon on How to change onClick handler dynamically? Simon 2009-12-05T20:01:35Z 2009-12-05T20:01:35Z should be wrapped in $(function() { ... }; so that it runs (and looks in the dom for 'foo' only after the DOM is complete) http://stackoverflow.com/questions/249074/how-to-change-onclick-handler-dynamically/249084#249084 Comment by Simon on How to change onClick handler dynamically? Simon 2009-12-05T20:00:16Z 2009-12-05T20:00:16Z i definitely would not use any getElementbyId stuff anymore. come a LONG way in my javascript experience in the past year. definitely recommend jQuery - or some other such framework. getElementById is just out of date now. see @darryl's answer below http://stackoverflow.com/questions/249074/how-to-change-onclick-handler-dynamically/249084#249084 Comment by Simon on How to change onClick handler dynamically? Simon 2009-12-05T19:58:45Z 2009-12-05T19:58:45Z @discorax neither did i. in fact not until just now! a year later http://stackoverflow.com/questions/1780538/minimizing-pci-compliance-when-my-checkout-flow-has-a-confirmation-page/1847618#1847618 Comment by Simon on Minimizing PCI compliance when my checkout flow has a confirmation page Simon 2009-12-05T01:55:44Z 2009-12-05T01:55:44Z so what if we DONT. apart from the risk who comes after us? the fine is only $20/month right now. theres a deadline july next year. this is when we HAVE to have form A or D filled out by or risk getting cut off? ps. im absolutely not planning on doing this - just trying to better understand the big picture http://stackoverflow.com/questions/691464/is-ie8-going-to-break-my-cdn-hosted-jquery/1849941#1849941 Comment by Simon on Is IE8 going to break my CDN hosted jQuery ? Simon 2009-12-05T01:53:49Z 2009-12-05T01:53:49Z consistently? i'd suggest installing fiddler (fiddlertool.com) and refreshing the webpage and see whether its trying to make a request to google CDN and what the response code is. you're not on HTTPS are you and clicking 'yes' for the warning box? http://stackoverflow.com/questions/1780538/minimizing-pci-compliance-when-my-checkout-flow-has-a-confirmation-page Comment by Simon on Minimizing PCI compliance when my checkout flow has a confirmation page Simon 2009-12-04T02:14:30Z 2009-12-04T02:14:30Z @stobor the difference being the user never knows they left your website. its a completely invisible step http://stackoverflow.com/questions/1780538/minimizing-pci-compliance-when-my-checkout-flow-has-a-confirmation-page Comment by Simon on Minimizing PCI compliance when my checkout flow has a confirmation page Simon 2009-12-03T22:04:54Z 2009-12-03T22:04:54Z @stobor not if using a transparent redirect where the HTTP form is actually posted to the trusted third party's site (as if you were actually on a hosted page). they are then responsible for securely storing the card info and POSTing back to us with any additional non sensitive fields on that page - such as order items, username/password etc. http://stackoverflow.com/questions/691464/is-ie8-going-to-break-my-cdn-hosted-jquery/1837317#1837317 Comment by Simon on Is IE8 going to break my CDN hosted jQuery ? Simon 2009-12-03T10:19:42Z 2009-12-03T10:19:42Z you summarized my concern very well. the fact is that TONNES of people are doing this and i'm just concerned it'll be a big issue. im just going ahead and using google, but i'm just slightly confused about the apparent ticking time bomb. thsi question is pretty old - i just assigned some bounty to see if anyone else knew any more. im not losing sleep over it - but would be very interested to see where this is going. (especially since MS has their own CDN now). i didnt see anything in the documentation about globally allowed servers such as google/MS