User Dave Ward - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T16:44:00Z http://stackoverflow.com/feeds/user/60 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1878118/manipulating-the-data-from-ajax-success-functiondata/1878245#1878245 5 Answer by Dave Ward for Manipulating the "data" from $.ajax success: function(data) {.... Dave Ward 2009-12-10T02:13:50Z 2009-12-10T02:13:50Z <p>You can create a jQuery object from arbitrary HTML, e.g.:</p> <pre><code>$('&lt;ul&gt;&lt;li&gt;Item&lt;/li&gt;&lt;/ul&gt;'); </code></pre> <p>So, you could do something like this:</p> <pre><code>success: function(data) { var $list = $(data); $list.find('li:last').remove(); // Do something with $list here, like append(). } </code></pre> <p>Here's a working example you can play around with on JS Bin: <a href="http://jsbin.com/ejule3/edit" rel="nofollow">http://jsbin.com/ejule3/edit</a></p> http://stackoverflow.com/questions/1854556/how-to-check-if-inputs-are-empty-with-jquery/1854579#1854579 0 Answer by Dave Ward for How to check if inputs are empty with JQuery? Dave Ward 2009-12-06T06:49:26Z 2009-12-06T06:49:26Z <p>Consider using <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">the jQuery validation plugin</a> instead. It may be slightly overkill for simple required fields, but it mature enough that it handles edge cases you haven't even thought of yet (nor would any of us until we ran into them).</p> <p>You can tag the required fields with a class of "required", run a $('form').validate() in $(document).ready() and that's all it takes.</p> <p>It's even hosted on the Microsoft CDN too, for speedy delivery: <a href="http://www.asp.net/ajaxlibrary/CDN.ashx" rel="nofollow">http://www.asp.net/ajaxlibrary/CDN.ashx</a></p> http://stackoverflow.com/questions/906900/why-is-javascript-considered-bad-by-some/1854213#1854213 1 Answer by Dave Ward for Why is JavaScript considered bad by some? Dave Ward 2009-12-06T03:05:01Z 2009-12-06T03:05:01Z <p>There are a few rare instances where JavaScript can be dangerous (but so can anything, including the massively ubiquitous Flash). The reason users actually do disable it or use addons like NoScript is largely unjustified paranoia.</p> <p>In the end, users don't stick with behavior that breaks the websites they want to experience. So, I wouldn't expect JavaScript paranoia to be a long-term issue as only more and more sites depend on it (like this one).</p> <p>It's similar to the hype we saw around cookies several years ago.</p> http://stackoverflow.com/questions/1853344/using-jquery-ajax-with-asp-net-webservices-always-goes-to-error-instead-of-succe/1853444#1853444 1 Answer by Dave Ward for using jQuery AJAX with asp.net webservices always goes to error: instead of success: Dave Ward 2009-12-05T20:59:15Z 2009-12-05T22:45:54Z <p>When you mark the service as a ScriptService, it automatically handles the JSON serialization. You shouldn't manually serialize the response.</p> <p>If you want the return to come back as "FirstName", then you can use a DTO class to control the syntax. Just returning a string, it would come back as {'d':'Keivan'} instead of {'d':{'FirstName':'Keivan'}}.</p> <pre><code>[ScriptService] public class CallDequeue : System.Web.Services.WebService { public class PersonDTO { public string FirstName; } [WebMethod] public PersonDTO Dequeue() { var p = new PersonDTO(); p.FirstName = "Keivan"; return p; } } </code></pre> <p>A few changes to the calling syntax:</p> <pre><code>jQuery(document).ready(function() { jQuery.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: "CallDequeue.asmx/Dequeue", data: "{}", dataType: "json", success: function(Msg) { // Unless you're using 2.0, the data comes back wrapped // in a .d object. // // This would just be Msg.d if you return a string instead // of the DTO. alert('success:' + Msg.d.FirstName); }, error: function(Msg) { alert('failed:' + Msg.status + ':' + Msg.responseText); } }); }); </code></pre> <p>You can read <a href="http://encosia.com/2009/02/10/a-breaking-change-between-versions-of-aspnet-ajax/" rel="nofollow">more about ASP.NET AJAX's .d wrapper here</a>, if you're interested.</p> <p><strong>Update:</strong></p> <p>Using ASP.NET 2.0, you need to install <a href="http://www.asp.net/ajax/downloads/archive/" rel="nofollow">the ASP.NET AJAX Extensions v1.0</a>. Additionally, <a href="http://www.asp.net/AJAX/Documentation/Live/ConfiguringASPNETAJAX.aspx" rel="nofollow">make sure your web.config is configured for ASP.NET AJAX</a> (most specifically the HttpHandlers section).</p> http://stackoverflow.com/questions/812479/general-purpose-json-serializer-deserializer-in-jquery/1837507#1837507 1 Answer by Dave Ward for General purpose json serializer/deserializer in jQuery? Dave Ward 2009-12-03T03:50:26Z 2009-12-03T03:50:26Z <p>jQuery does just use eval() for now. jQuery 1.4 will include support for browser-native JSON deserialization in browsers that support it. You can take advantage of that now if you want, by <a href="http://encosia.com/2009/07/07/improving-jquery-json-performance-and-security/" rel="nofollow">using jQuery's dataFilter callback to avoid the eval() when possible</a> (put it in $.ajaxSetup to affect all $.ajax(), $.post(), $.getJSON() calls automatically).</p> http://stackoverflow.com/questions/1837460/asp-net-postback-with-jquery-ajax-and-jquery-dialog/1837484#1837484 1 Answer by Dave Ward for asp.net postback with jquery ajax and jquery dialog Dave Ward 2009-12-03T03:39:25Z 2009-12-03T03:39:25Z <p>That would be easier if you can use an UpdatePanel (which basically boils down to ASP.NET's way of doing what you're considering with the $.post(), but automatically gets the ASP.NET specific stuff right).</p> <p>Then, you can do something simple like this: <a href="http://encosia.com/2008/10/04/using-jquery-to-enhance-aspnet-ajax-progress-indication/" rel="nofollow">http://encosia.com/2008/10/04/using-jquery-to-enhance-aspnet-ajax-progress-indication/</a></p> http://stackoverflow.com/questions/1837383/how-do-i-convert-the-items-of-an-li-into-a-json-object-using-jquery/1837464#1837464 4 Answer by Dave Ward for How do I convert the items of an LI into a json object using jquery? Dave Ward 2009-12-03T03:32:51Z 2009-12-03T03:32:51Z <p>jQuery actually has something built-in for building the array: <a href="http://docs.jquery.com/Utilities/jQuery.map#arraycallback" rel="nofollow">map()</a></p> <pre><code>var items = $('.nameList').find('li').map(function() { var item = { }; item.id = this.value; item.title = $(this).text(); return item; }); </code></pre> <p>That will build an array of objects matching the JSON structure you're after. Then, to JSON serialize that, use JSON.stringify which is built into newer browsers and available for older ones by including <a href="http://www.json.org/js.html" rel="nofollow">json2.js</a>:</p> <pre><code>// Produces [{'id':1,'title':'bob'},{etc},{etc}] var json = JSON.stringify(items); </code></pre> <p>Also keep in mind that $.post() automatically serializes an object data parameter, as key1=value1&amp;key2=value2&amp;etc. Unless you strictly need JSON on the server-side, the JSON serialization step may not be necessary.</p> http://stackoverflow.com/questions/1816383/javascript-each-array/1816389#1816389 2 Answer by Dave Ward for Javascript: Each Array Dave Ward 2009-11-29T18:49:57Z 2009-11-29T18:49:57Z <p>This will work in your simple example scenario:</p> <pre><code>for (var key in array) { alert(key + " = " + array[key]); } </code></pre> <p>For general use, <a href="http://javascript.crockford.com/code.html#for%20statement" rel="nofollow">it's recommended that you test to be sure that the property hasn't been grafted onto the object somewhere else in the inheritance chain</a>:</p> <pre><code>for (var key in array) { if (array.hasOwnProperty(key)) { alert(key + " = " + array[key]); } } </code></pre> http://stackoverflow.com/questions/1800995/how-to-verify-if-the-web-service-caller-is-my-web-site/1801241#1801241 0 Answer by Dave Ward for How to verify if the Web Service caller is my web site? Dave Ward 2009-11-26T02:28:49Z 2009-11-26T02:28:49Z <p>Since you're using ASP.NET, one easy route you can take is the built-in Forms Authentication. Since that depends on a cookie set on the same domain as the web service, a side-effect of using it is that only requests from the same domain will successfully authenticate.</p> http://stackoverflow.com/questions/1776930/connection-string-in-web-config/1776956#1776956 2 Answer by Dave Ward for connection string in web config Dave Ward 2009-11-21T22:14:57Z 2009-11-21T22:14:57Z <p>I like to use configSource to pull the connection string out into a separate file, as explained here*: <a href="http://stevenharman.net/blog/archive/2007/06/07/tip-put-connection-strings-in-their-own-configuration-file.aspx" rel="nofollow">http://stevenharman.net/blog/archive/2007/06/07/tip-put-connection-strings-in-their-own-configuration-file.aspx</a></p> <p>That way, you can configure each server's connectionStrings.config once, but continue updating their web.config files with a single version that works for all of them.</p> <p>* Except, I usually name it connectionStrings.config, so it's more obvious for maintenance by others.</p> http://stackoverflow.com/questions/1447184/microsoft-cdn-for-jquery-or-google-cdn/1768575#1768575 2 Answer by Dave Ward for Microsoft CDN for JQuery or Google CDN? Dave Ward 2009-11-20T05:53:13Z 2009-11-20T05:53:13Z <p>You should absolutely use the Google CDN for jQuery (and this is coming from a Microsoft-centric developer).</p> <p>It's simple statistics. Those who would consider using the MS CDN for jQuery will always be a minority. There are too many non-MS developers using jQuery who will use Google's and wouldn't consider using Microsoft's. Since <a href="http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/" rel="nofollow">one of the big wins with a public CDN is improved caching</a>, splitting usage among multiple CDNs decreases the potential for that benefit.</p> http://stackoverflow.com/questions/1743009/how-can-i-ensure-that-changes-to-a-form-dom-are-complete-before-posting/1743148#1743148 2 Answer by Dave Ward for How can I ensure that changes to a form DOM are complete before POSTing? Dave Ward 2009-11-16T16:04:57Z 2009-11-16T16:04:57Z <p>I'd generally agree with others that you shouldn't do this, but your problem may be that you're changing the element to a type of "textbox" instead of "text". If you declare an input of type "textbox" in HTML markup, it will usually render as a text field anyway because that's the default. However, changing an already valid "checkbox" type input to the invalid "textbox" may not work predictably.</p> <p>Try changing it to this:</p> <pre><code>function checkboxConvert() { var chkBxs = $$('.checkbox'); for (var i = 0; i &lt; chkBxs.length; i++) { if (chkBxs[i].checked == false) { chkBxs[i].type = 'text'; chkBxs[i].value = '0'; } } // Because JS in the browser is single-threaded, this // cannot execute before the preceding loop completes anyway. document.productForm.submit(); } </code></pre> http://stackoverflow.com/questions/1739800/variables-set-during-getjson-function-only-accessible-within-function/1739990#1739990 2 Answer by Dave Ward for Variables set during $.getJSON function only accessible within function Dave Ward 2009-11-16T04:06:58Z 2009-11-16T15:54:00Z <p>Remember that when you supply a callback function, the point of that is to defer the execution of that callback until later and immediately continue execution of whatever is next. This is necessary because of the single-threaded execution model of JavaScript in the browser. Forcing synchronous execution is possible, but it hangs the browser for the entire duration of the operation. In the case of something like $.getJSON, that is a prohibitively long time for the browser to stop responding.</p> <p>In other words, you're trying to find a way to use this procedural paradigm:</p> <pre><code>var foo = {}; $.getJSON("url", function(data) { foo = data.property; }); // Use foo here. </code></pre> <p>When you need to refactor your code so that it flows more like this:</p> <pre><code>$.getJSON("url", function(data) { // Do something with data.property here. }); </code></pre> <p>"Do something" could be a call to another function if you want to keep the callback function simple. The important part is that you're waiting until $.getJSON finishes before executing the code.</p> <p>You could even use custom events so that the code you had placed after $.getJSON subscribes to an IssuesReceived event and you raise that event in the $.getJSON callback:</p> <pre><code>$(document).ready(function() { $(document).bind('IssuesReceived', IssuesReceived) $.getJSON("url", function(data) { $(document).trigger('IssuesReceived', data); }); }); function IssuesReceived(evt, data) { // Do something with data here. } </code></pre> <p><strong>Update:</strong></p> <p>Or, you could store the data globally and just use the custom event for notification that the data had been received and the global variable updated.</p> <pre><code>$(document).ready(function() { $(document).bind('IssuesReceived', IssuesReceived) $.getJSON("url", function(data) { // I prefer the window.data syntax so that it's obvious // that the variable is global. window.data = data; $(document).trigger('IssuesReceived'); }); }); function IssuesReceived(evt) { // Do something with window.data here. // (e.g. create the drag 'n drop interface) } // Wired up as the "drop" callback handler on // your drag 'n drop UI. function OnDrop(evt) { // Modify window.data accordingly. } // Maybe wired up as the click handler for a // "Save changes" button. function SaveChanges() { $.post("SaveUrl", window.data); } </code></pre> <p><strong>Update 2:</strong></p> <p>In response to this:</p> <blockquote> <p>Does anyone have an idea how I should be blocking user interaction while this is going on? Why is it such a concern? Thanks again for all the responses.</p> </blockquote> <p>The reason that you should avoid blocking the browser with synchronous AJAX calls is that <strong>a blocked JavaScript thread blocks everything else in the browser too</strong>, including other tabs and even other windows. That means no scrolling, no navigation, no nothing. For all intents and purposes, it appears as though the browser has crashed. As you can imagine, a page that behaves this way is a <em>significant</em> nuisance to its users. </p> http://stackoverflow.com/questions/1738808/keypress-in-jquery-press-tab-inside-textarea-when-editing-an-existing-text/1738857#1738857 3 Answer by Dave Ward for Keypress in jQuery: Press TAB inside TEXTAREA (when editing an existing text) Dave Ward 2009-11-15T21:15:39Z 2009-11-15T21:15:39Z <p>Unfortunately, manipulating the text inside textarea elements is not as simple as one might hope. The reason that Tabby is larger than those simple snippets is that it works better. It has better cross-browser compatibility and handles things like tabbing selections.</p> <p>When minified, it's only about 5k. I'd suggest using it. You'll either have to discover and troubleshoot those same edge cases yourself anyway, or might not even know about them if users don't report them.</p> http://stackoverflow.com/questions/1472295/scream-of-the-day-javascript-serialising-arrays-in-different-ways/1472447#1472447 3 Answer by Dave Ward for Scream of the day - Javascript serialising arrays in different ways... Dave Ward 2009-09-24T15:30:01Z 2009-09-24T15:30:01Z <p>I'd suggest using <a href="http://www.json.org/js.html" rel="nofollow">json2.js' JSON.stringify</a>. It gets both of those cases right:</p> <pre><code>// [] is the same as new Array(); var foo = []; foo.push(1); foo.push(2); JSON.stringify(foo); // "[1, 2]" var bar = []; bar.push(1); JSON.stringify(bar); // "[1]" </code></pre> <p>In addition, when you use the json2.js API, your code automatically takes advantage of browser-native functionality in newer browsers.</p> http://stackoverflow.com/questions/1467834/jquery-when-does-scan-the-whole-dom/1467884#1467884 0 Answer by Dave Ward for jquery: when does $("???") scan the whole DOM? Dave Ward 2009-09-23T18:42:09Z 2009-09-23T18:42:09Z <p>Here's a compatibility table for document.getElementsByClassName: <a href="http://www.quirksmode.org/dom/w3c%5Fcore.html#gettingelements" rel="nofollow">http://www.quirksmode.org/dom/w3c%5Fcore.html#gettingelements</a></p> <p>The browsers in green for getElementsByClassName will <em>not</em> require a full DOM scan for $(".className") selectors, and will use browser-native methods instead. The ones in red will be slower.</p> <p>The difference isn't as pronounced as you'd think though, even for thousands of elements.</p> http://stackoverflow.com/questions/1452976/is-this-an-example-of-selectors/1452984#1452984 0 Answer by Dave Ward for Is this an example of selectors? Dave Ward 2009-09-21T05:15:02Z 2009-09-21T05:15:02Z <p>That's probably intended to be a selector, yes. I don't think the <strong>input[type='button']text</strong> portion is going to work though.</p> <p>The jQuery documentation has a good rundown of all the various selectors: <a href="http://docs.jquery.com/Selectors" rel="nofollow">http://docs.jquery.com/Selectors</a></p> <p>Also check out <a href="http://www.selectorgadget.com/" rel="nofollow">SelectorGadget</a>. It's an interactive selector building GUI that loads right into your browser.</p> http://stackoverflow.com/questions/1433773/should-an-intranet-web-application-utilize-a-cdn/1433918#1433918 1 Answer by Dave Ward for Should an intranet web application utilize a CDN Dave Ward 2009-09-16T16:05:02Z 2009-09-16T16:05:02Z <p><a href="http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/" rel="nofollow">I'm a big fan of using CDNs for these things</a>, but I think it would be a rare exception when using Google or Microsoft's CDN would be appropriate for an Intranet application.</p> <ol> <li>For users on an internal network, an external request (even to a fast, nearby CDN) will be much slower than an internal request.</li> <li>Often, these things need to be accessible when no Internet connection is present on the client.</li> <li>Even if you do have geographically dispersed VPN users, <em>all</em> of their requests are often being routed through the company's network anyway, making the CDN request even slower than the VPN-local request.</li> </ol> http://stackoverflow.com/questions/1415715/problem-with-jquery-ajax-call-to-web-service/1415736#1415736 4 Answer by Dave Ward for Problem with jQuery.ajax call to web service Dave Ward 2009-09-12T17:55:47Z 2009-09-12T17:55:47Z <p>If you have ASP.NET AJAX available on the server-side (ASP.NET 2.0 + ASP.NET AJAX Extensions v1.0 or ASP.NET 3.5+), I've found that the easiest way to do it is to use JSON between the client and server-side. You'll just need to add the [ScriptService] attribute to your service and then use this form for calling the service:</p> <pre><code>$.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: "WebService.asmx/WebMethodName", data: "{}", dataType: "json" }); </code></pre> <p>For more info, see the full post here: <a href="http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/" rel="nofollow">http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/</a></p> <p>In order to provide a JavaScript object as you are in that example code, you'll also need to <a href="http://encosia.com/2009/04/07/using-complex-types-to-make-calling-services-less-complex/" rel="nofollow">use JSON.Stringify to generate an appropriate JSON string to pass to the server-side</a>.</p> http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery/1408300#1408300 0 Answer by Dave Ward for Get URL parameter with jQuery Dave Ward 2009-09-10T23:42:33Z 2009-09-10T23:42:33Z <p>Rick Strahl just posted some handy routines for that: <a href="http://www.west-wind.com/Weblog/posts/884279.aspx" rel="nofollow">http://www.west-wind.com/Weblog/posts/884279.aspx</a></p> http://stackoverflow.com/questions/1395514/is-it-acceptable-to-use-tables-for-forms-or-is-it-still-more-correct-to-use-divs/1395941#1395941 4 Answer by Dave Ward for Is it acceptable to use tables for forms? Or is it still more correct to use divs? Dave Ward 2009-09-08T19:46:16Z 2009-09-10T04:29:27Z <p>A form isn't tabular data.</p> <p>It's so easy to lay out form elements with CSS, I don't see any value worth obfuscating the markup with tables. Personally, I find that laying out forms with CSS is <em>easier</em> than using tables at this point. For example:</p> <p>HTML:</p> <pre><code>&lt;fieldset&gt; &lt;label for="FirstName"&gt;First Name&lt;/label&gt; &lt;input type="text" id="FirstName" /&gt; &lt;label for="LastName"&gt;Last Name&lt;/label&gt; &lt;input type="text" id="LastName" /&gt; &lt;label for="Age"&gt;Age:&lt;/label&gt; &lt;select id="Age"&gt; &lt;option&gt;18-24&lt;/option&gt; &lt;option&gt;25-50&lt;/option&gt; &lt;option&gt;51-old&lt;/option&gt; &lt;/select&gt; &lt;/fieldset&gt; </code></pre> <p>CSS:</p> <pre><code>fieldset { overflow: hidden; width: 400px; } label { clear: both; float: right; padding-right: 10px; width: 100px; } input, select { float: left; } </code></pre> <p>Using simple variations on that theme, you can make great-looking, accessible forms that are actually easier to work with than tables anyway. I've used that basic approach and ramped it up to some fairly complex, multi-column data entry forms too, no sweat.</p> http://stackoverflow.com/questions/1396974/whats-the-best-way-to-send-array-of-objects-from-javascript-to-webservice/1397241#1397241 1 Answer by Dave Ward for Whats the best way to send array of objects from javascript to webservice? Dave Ward 2009-09-09T02:10:34Z 2009-09-09T02:10:34Z <p>Hey, Amr.</p> <p>If you don't mind including a tiny JavaScript library, I think <a href="http://encosia.com/2009/04/07/using-complex-types-to-make-calling-services-less-complex/" rel="nofollow">using json2.js' JSON.Stringify is the best way to serialize objects for use with ASP.NET AJAX services</a>.</p> <p>Here's a snippet from that post:</p> <pre><code>// Initialize the object, before adding data to it. // { } is declarative shorthand for new Object(). var NewPerson = { }; NewPerson.FirstName = $("#FirstName").val(); NewPerson.LastName = $("#LastName").val(); NewPerson.Address = $("#Address").val(); NewPerson.City = $("#City").val(); NewPerson.State = $("#State").val(); NewPerson.Zip = $("#Zip").val(); // Create a data transfer object (DTO) with the proper structure. var DTO = { 'NewPerson' : NewPerson }; $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", url: "PersonService.asmx/AddPerson", data: JSON.stringify(DTO), dataType: "json" }); </code></pre> <p>There's no array in that example, but JSON.Stringify does serialize JavaScript arrays in the correct format to send in to ASP.NET AJAX services for array and List parameters.</p> <p>A nice thing about using JSON.Stringify is that in browser that support native JSON serializing (FF 3.5, IE 8, nightly builds of Safari and Chrome), it will automatically take advantage of the browser-native routines instead of using JavaScript. So, it gets an automatic speed boost in those browsers.</p> http://stackoverflow.com/questions/1355892/how-to-pass-querystring-to-ajax-webservice/1381143#1381143 0 Answer by Dave Ward for How to pass querystring to Ajax WebService Dave Ward 2009-09-04T19:33:19Z 2009-09-04T19:33:19Z <p>You should use the <strong>ContextKey</strong> feature of the SlideShowExtender (see <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/SlideShow/SlideShow.aspx" rel="nofollow">its documentation</a>).</p> <p>If your extender were declared something like the sample:</p> <pre><code>&lt;ajaxToolkit:SlideShowExtender ID="SlideShowExtender1" runat="server" TargetControlID="Image1" SlideShowServiceMethod="GetSlides" AutoPlay="true" ImageTitleLabelID="imageTitle" ImageDescriptionLabelID="imageDescription" NextButtonID="nextButton" PlayButtonText="Play" StopButtonText="Stop" PreviousButtonID="prevButton" PlayButtonID="playButton" Loop="true" /&gt; </code></pre> <p>And your GetSlides service method were declared with the <strong>contextKey</strong> parameter (careful, it's case sensitive), like this:</p> <pre><code>[System.Web.Services.WebMethod] [System.Web.Script.Services.ScriptMethod] public AjaxControlToolkit.Slide[] GetSlides(string contextKey) { // Do something with contextKey here and return the slides. } </code></pre> <p>Then you could pass that QueryString value to the service method with code like this in your SecondPage.aspx's Page_Load.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { SlideShowExtender1.ContextKey = Request.QueryString["id"]; } </code></pre> http://stackoverflow.com/questions/1354199/do-you-have-a-programming-portfolio-does-it-help-you-to-get-a-job/1354231#1354231 6 Answer by Dave Ward for Do you have a programming portfolio? Does it help you to get a job? Dave Ward 2009-08-30T16:27:24Z 2009-08-31T11:45:41Z <p>A programmer's portfolio should be contribution to open source projects, a technical blog, and/or participation on public-facing sites like this one.</p> <p>In response to the comment:</p> <p>A developer who only cares about development during business hours can't compete with one who devotes themselves to continual improvement of their craft.</p> <p>Devotion to the craft isn't for everyone and there's absolutely nothing <em>wrong</em> with being a 9-5 developer. Using your skills to pay the bills so that you can focus on what you really care about is good work-life balance, which is what's more important to some.</p> <p>However, the 9-5'er will very rarely be as proficient as the person who <em>is</em> a software developer instead of just pursuing it as a career. That's why many employers value a blog, open source contributions, or activity on sites such as this one.</p> http://stackoverflow.com/questions/1350216/what-does-the-viewstate-hold/1350294#1350294 2 Answer by Dave Ward for What does the __VIEWSTATE hold? Dave Ward 2009-08-29T02:49:16Z 2009-08-29T02:49:16Z <p>If you really want to understand it well, see <a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx" rel="nofollow">Dave Reed's article about ViewState</a>.</p> http://stackoverflow.com/questions/1350153/deserializing-an-rss-feed-in-net/1350188#1350188 2 Answer by Dave Ward for Deserializing an RSS feed in .NET Dave Ward 2009-08-29T01:48:52Z 2009-08-29T01:48:52Z <p>If you can use LINQ, LINQ to XML is an easy way to get at the basics of an RSS feed document.</p> <p>This is from <a href="http://encosia.com/2008/02/05/boost-aspnet-performance-with-deferred-content-loading/" rel="nofollow">something I wrote</a> to select out a collection of anonymous types from my blog's RSS feed, for example:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { XDocument feedXML = XDocument.Load("http://feeds.encosia.com/Encosia"); var feeds = from feed in feedXML.Descendants("item") select new { Title = feed.Element("title").Value, Link = feed.Element("link").Value, Description = feed.Element("description").Value }; PostList.DataSource = feeds; PostList.DataBind(); } </code></pre> <p>You should be able to use something very similar against your Netflix feed.</p> http://stackoverflow.com/questions/1339611/jquery-ajax-vs-asp-net-ajax-to-consume-asmx-services/1345520#1345520 1 Answer by Dave Ward for jquery $.ajax vs asp.net ajax to consume asmx services. Dave Ward 2009-08-28T07:21:06Z 2009-08-28T07:21:06Z <p>The speed of the call itself isn't going to vary between MicrosoftAjax.js and jQuery. Using jQuery does allow you to avoid the extra overhead of downloading the ASMX's JavaScript proxy though. If you're not using ASP.NET AJAX for anything else, it also allows you to avoid the overhead of downloading MicrosoftAjax.js.</p> <p>If you do want to use jQuery to call the service directly, it's not very difficult. This is a basic example of how to do it: <a href="http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/" rel="nofollow">http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/</a></p> <p>Once you understand that basic form of the call, this is a more refined usage that isolates you from <a href="http://encosia.com/2009/02/10/a-breaking-change-between-versions-of-aspnet-ajax/" rel="nofollow">a breaking change in ASP.NET 3.5+</a> and allows you to leverage the browser-native JSON parsing in newer browsers: <a href="http://encosia.com/2009/07/21/simplify-calling-asp-net-ajax-services-from-jquery/" rel="nofollow">http://encosia.com/2009/07/21/simplify-calling-asp-net-ajax-services-from-jquery/</a></p> http://stackoverflow.com/questions/1323929/net-libraries-to-work-with-json/1323970#1323970 1 Answer by Dave Ward for .NET Libraries to work with JSON Dave Ward 2009-08-24T18:29:43Z 2009-08-24T18:29:43Z <p>If you can install <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ca9d90fa-e8c9-42e3-aa19-08e2c027f5d6&amp;displaylang=en" rel="nofollow">the ASP.NET AJAX Extensions</a> with 2.0, it has the same JSON serialization functionality that 3.5 has built in.</p> http://stackoverflow.com/questions/1294290/jquery-quicksearch-plugin-help/1322613#1322613 0 Answer by Dave Ward for jQuery quicksearch plugin help Dave Ward 2009-08-24T14:01:14Z 2009-08-24T14:01:14Z <p>Are you sure that nothing else is applying CSS to those rows? If you remove the stripeRowClass option from quicksearch, do the rows have any alternating styling at all remaining?</p> http://stackoverflow.com/questions/1276098/is-it-possible-to-restrict-certain-asmx-web-service-methods-to-get-or-post-only/1276124#1276124 0 Answer by Dave Ward for Is it possible to restrict certain ASMX web service methods to GET or POST only? Dave Ward 2009-08-14T05:02:22Z 2009-08-14T05:09:54Z <p>You can <a href="http://support.microsoft.com/kb/819267" rel="nofollow">enable GET in the web.config</a>, using:</p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;webServices&gt; &lt;protocols&gt; &lt;add name="HttpGet"/&gt; &lt;add name="HttpPost"/&gt; &lt;/protocols&gt; &lt;/webServices&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>To restrict a single method to POST, you can test HttpContext.Current.Request.HttpMethod at runtime.</p> http://stackoverflow.com/questions/1858369/problem-in-opening-mvc-project-in-2008-studio/1858374#1858374 Comment by Dave Ward on problem in opening mvc project in 2008 studio Dave Ward 2009-12-07T07:24:53Z 2009-12-07T07:24:53Z The project type GUID isn't the same for v1 and v2. You need v1 installed to open v1 projects. http://stackoverflow.com/questions/1853344/using-jquery-ajax-with-asp-net-webservices-always-goes-to-error-instead-of-succe/1853444#1853444 Comment by Dave Ward on using jQuery AJAX with asp.net webservices always goes to error: instead of success: Dave Ward 2009-12-05T21:23:10Z 2009-12-05T21:23:10Z Updated the answer with a couple steps that are necessary to get the JSON serialization working in 2.0. http://stackoverflow.com/questions/1739800/variables-set-during-getjson-function-only-accessible-within-function/1739990#1739990 Comment by Dave Ward on Variables set during $.getJSON function only accessible within function Dave Ward 2009-11-18T20:41:34Z 2009-11-18T20:41:34Z The custom event triggering is basically the same in this simple example, you're right. It does allow you to decouple the functions a bit though, which is nice. That way your AJAX callback doesn't need to drive the next action so directly (which you seemed to dislike), but just notifies interested event consumers that the data has been updated. As your client-side code gets more complex, this is a great way to manage that complexity. http://stackoverflow.com/questions/1739800/variables-set-during-getjson-function-only-accessible-within-function/1739990#1739990 Comment by Dave Ward on Variables set during $.getJSON function only accessible within function Dave Ward 2009-11-16T04:36:35Z 2009-11-16T04:36:35Z @Matt: Take a look at my recent edits, including the OnDrop and SaveChanges functions, and see if that makes sense. With event-driven code, the idea is to act on these events as necessary, not to orchestrate a certain chain of code to execute all in synchronous order. Anything else is going against the grain when you're working in the single-threaded browser environment; especially when using an event-driven framework like jQuery. http://stackoverflow.com/questions/1739800/variables-set-during-getjson-function-only-accessible-within-function/1739990#1739990 Comment by Dave Ward on Variables set during $.getJSON function only accessible within function Dave Ward 2009-11-16T04:28:52Z 2009-11-16T04:28:52Z @Matt: In that case, you should probably use a global variable (the window.foo that others have mentioned) to store the data in. You could still use a custom event to notify IssuesReceived that it should then build the drag 'n drop interface based on what's in the global variable though. As events like &quot;drop&quot; happen, you can modify the global object. Then, eventually send that up-to-date object back to the server to save the user's changes. http://stackoverflow.com/questions/1739800/variables-set-during-getjson-function-only-accessible-within-function/1739990#1739990 Comment by Dave Ward on Variables set during $.getJSON function only accessible within function Dave Ward 2009-11-16T04:19:53Z 2009-11-16T04:19:53Z @Nosredna: Custom events are very underused, IMO. They're great for cleaning up the nested anonymous function spaghetti that inline event handlers tend to produce. http://stackoverflow.com/questions/1739678/validating-user-input-with-javascript Comment by Dave Ward on Validating user input with JavaScript Dave Ward 2009-11-16T02:10:43Z 2009-11-16T02:10:43Z Are you using jQuery (or another JavaScript library), or are you looking for pure JavaScript? http://stackoverflow.com/questions/1481532/getting-better-error-message-from-asp-net-webmethod-called-from-jquery Comment by Dave Ward on Getting Better Error Message From ASP.Net [WebMethod] Called From JQuery Dave Ward 2009-10-26T15:21:03Z 2009-10-26T15:21:03Z Somewhat unrelated, but I would recommend using JSON.stringify instead of $.toJSON. In modern browsers, JSON.stringify will automatically take advantage of faster, browser-native functionality, instead of serializing it via the JavaScript engine. http://stackoverflow.com/questions/1118893/javascript-obfuscation-what-works Comment by Dave Ward on Javascript Obfuscation - what works? Dave Ward 2009-10-06T22:08:53Z 2009-10-06T22:08:53Z Consider this: The text editor that you typed this question in was reverse engineered from obfuscated JavaScript code, so that it could be improved. <a href="http://blog.stackoverflow.com/2009/01/wmd-editor-reverse-engineered/" rel="nofollow">blog.stackoverflow.com/2009/01/&hellip;</a> http://stackoverflow.com/questions/1397366/frustrating-problem-with-javascripts-getelementbyid/1397417#1397417 Comment by Dave Ward on Frustrating problem with JavaScript's getElementById() Dave Ward 2009-09-09T03:47:41Z 2009-09-09T03:47:41Z I think this is correct. The easiest solution might be to just move the script references to the bottom of the page, and leave them as-is. That should improve the initial page load time too anyway. http://stackoverflow.com/questions/1396974/whats-the-best-way-to-send-array-of-objects-from-javascript-to-webservice/1397088#1397088 Comment by Dave Ward on Whats the best way to send array of objects from javascript to webservice? Dave Ward 2009-09-09T02:12:04Z 2009-09-09T02:12:04Z The data parameter must be quoted when calling ASP.NET AJAX services. If you pass jQuery an object as the data parameter, it will serialize it as k=v pairs in the POST request. ASP.NET AJAX services expect a JSON string representing the parameters instead, not k=v pairs. http://stackoverflow.com/questions/1354199/do-you-have-a-programming-portfolio-does-it-help-you-to-get-a-job/1354231#1354231 Comment by Dave Ward on Do you have a programming portfolio? Does it help you to get a job? Dave Ward 2009-09-02T18:04:24Z 2009-09-02T18:04:24Z You don't have to have a blog, or a programming portfolio, or any sort of professional development at all if you don't want to. Identifying the minimum you can get by with obviously isn't the point of this question. http://stackoverflow.com/questions/1354199/do-you-have-a-programming-portfolio-does-it-help-you-to-get-a-job/1354231#1354231 Comment by Dave Ward on Do you have a programming portfolio? Does it help you to get a job? Dave Ward 2009-09-02T15:29:28Z 2009-09-02T15:29:28Z Those things aren't mutually exclusive. It's easy to have both a social life and a durable online presence. Reading technical books is certainly important, but if it were enough by itself, then CS students would be graduating into &quot;senior&quot; developer positions. http://stackoverflow.com/questions/1276098/is-it-possible-to-restrict-certain-asmx-web-service-methods-to-get-or-post-only/1276161#1276161 Comment by Dave Ward on Is it possible to restrict certain ASMX web service methods to GET or POST only? Dave Ward 2009-08-15T01:07:28Z 2009-08-15T01:07:28Z You're right. Handy! http://stackoverflow.com/questions/1276098/is-it-possible-to-restrict-certain-asmx-web-service-methods-to-get-or-post-only/1276161#1276161 Comment by Dave Ward on Is it possible to restrict certain ASMX web service methods to GET or POST only? Dave Ward 2009-08-14T05:46:43Z 2009-08-14T05:46:43Z That restricts the entire service to POST, not just a single method like I think he's asking.