User Kyle B. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:12:19Z http://stackoverflow.com/feeds/user/6158 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1758240/how-do-i-make-a-textbox-postback-on-keyup/1758295#1758295 0 Answer by Kyle B. for How do I make a Textbox Postback on KeyUp? Kyle B. 2009-11-18T19:05:23Z 2009-11-18T19:05:23Z <p>Would this help you?</p> <p><a href="http://stackoverflow.com/questions/1009086/how-to-make-an-asp-net-textbox-fire-its-ontextchanged-event-fire-in-an-ajax-upda">http://stackoverflow.com/questions/1009086/how-to-make-an-asp-net-textbox-fire-its-ontextchanged-event-fire-in-an-ajax-upda</a></p> http://stackoverflow.com/questions/1757709/getting-rid-of-microsoft-ajax/1758226#1758226 0 Answer by Kyle B. for Getting rid of Microsoft AJAX Kyle B. 2009-11-18T18:54:41Z 2009-11-18T18:54:41Z <p>You may be interested in the more lightweight conditional rendering feature in the upcoming release of .NET4 (along with Visual Studio 2010)</p> <p><a href="http://msdn.microsoft.com/en-us/magazine/ee335716.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/ee335716.aspx</a></p> <p>If you can wait, it might be a viable solution for you.</p> http://stackoverflow.com/questions/1758183/error-exception-access-to-restricted-uri-denied-while-calling-ajax/1758195#1758195 1 Answer by Kyle B. for Error: [Exception... "Access to restricted URI denied" .... while calling $.ajax method Kyle B. 2009-11-18T18:47:24Z 2009-11-18T18:47:24Z <p>You are not allowed to make AJAX requests on another domain, and when the url paths do not match, it thinks they are on different domains.</p> <p>edit: could you pass the relative url, instead of full path as a workaround? i.e. /path/to/file.aspx instead of <a href="http://www.xyz.com/path/to/file.aspx" rel="nofollow">http://www.xyz.com/path/to/file.aspx</a>?</p> http://stackoverflow.com/questions/1731021/what-is-the-best-way-to-jump-from-one-textbox-to-another-using-the-microsoft-clie/1731291#1731291 0 Answer by Kyle B. for What is the best way to jump from one textbox to another using the Microsoft client-side AJAX Library? Kyle B. 2009-11-13T19:21:35Z 2009-11-13T19:21:35Z <p>You could make use of the tabindex html element property to allow users to through the fields. This is, in my opinion, a universal mechanism for moving through a form.</p> <p><a href="http://www.w3.org/TR/html401/interact/forms.html#adef-tabindex" rel="nofollow">http://www.w3.org/TR/html401/interact/forms.html#adef-tabindex</a></p> http://stackoverflow.com/questions/1731177/need-some-help-with-sql-groupby/1731266#1731266 0 Answer by Kyle B. for Need some help with SQL GroupBY Kyle B. 2009-11-13T19:18:08Z 2009-11-13T19:18:08Z <p>You may want to look into using the PIVOT statement offered by versions of SQL Server 2005+</p> <p><a href="http://geekswithblogs.net/lorint/archive/2006/08/04/87166.aspx" rel="nofollow">http://geekswithblogs.net/lorint/archive/2006/08/04/87166.aspx</a></p> http://stackoverflow.com/questions/1715902/future-of-android-development 0 Future of Android Development [closed] Kyle B. 2009-11-11T15:24:19Z 2009-11-13T14:10:42Z <p>With the <a href="http://www.informationweek.com/news/software/web%5Fservices/showArticle.jhtml?articleID=221601138" rel="nofollow">recent release of Google's "Go" programming language</a> and the Android device currently being built on the Java platform, are there any pundits willing to make an estimate on whether or not they will migrate Android development to "Go", and if so, how soon? Perhaps the two would exist in parallel?</p> <p>I just started with Android development, and was curious if anyone felt efforts would be more beneficial focused on the "Go" language.</p> http://stackoverflow.com/questions/1702196/how-often-is-the-application-store-refreshed-in-an-asp-net-website/1702375#1702375 0 Answer by Kyle B. for How often is the Application store refreshed in an ASP.Net Website? Kyle B. 2009-11-09T17:07:45Z 2009-11-09T17:07:45Z <p>My understanding this is available for the application lifetime, or until the application pool is reset.</p> <p>There is a good article <a href="http://justgeeks.blogspot.com/2008/07/aspnet-session-timeouts.html" rel="nofollow">here</a> on all the various reasons the application/session pool in IIS would be recycled.</p> <p>There are settings in both IIS and also web.config which can change the behavior of the application store availability. </p> http://stackoverflow.com/questions/1701788/how-to-convert-string-to-arraylist/1701807#1701807 5 Answer by Kyle B. for How to convert string[] to ArrayList? Kyle B. 2009-11-09T15:38:01Z 2009-11-09T15:38:01Z <pre><code>string[] myStringArray = new string[2]; myStringArray[0] = "G"; myStringArray[1] = "L"; ArrayList myArrayList = new ArrayList(); myArrayList.AddRange(myStringArray); </code></pre> http://stackoverflow.com/questions/1698126/trying-to-add-a-where-clause-for-rownumber/1698133#1698133 2 Answer by Kyle B. for Trying to add a where clause for row_number Kyle B. 2009-11-08T22:27:13Z 2009-11-08T22:27:13Z <p>Could you do?</p> <pre><code>SELECT * FROM ( SELECT TOP 200 ROW_NUMBER() OVER (ORDER BY KEY_TBL.RANK DESC) AS RowNumber, FT_TBL.JobId, FT_TBL.Title, FT_TBL.[Description], FT_TBL.Location, KEY_TBL.RANK FROM Jobs AS FT_TBL INNER JOIN FREETEXTTABLE (Jobs, (Title, [Description]), 'packaging') AS KEY_TBL ON FT_TBL.JobId = KEY_TBL.[KEY] WHERE CONTAINS (Location, '"luton*"') AND PostedDate &gt;= GETDATE() - 7 ) as tmp WHERE tmp.RowNumber &gt; 5 </code></pre> http://stackoverflow.com/questions/1696755/asp-net-web-application-with-mysql/1698125#1698125 2 Answer by Kyle B. for Asp.net web application with MySQL Kyle B. 2009-11-08T22:24:10Z 2009-11-08T22:24:10Z <p>ASP.net connects to SQL Server Database with the Tabular Data Stream Protocol (TDS), which is different from the OleDB protocol it uses to connect to MySQL. This is a "closer to the metal" approach to connecting to the database, and as a result, is markedly faster.</p> <p>You can see an ADO.NET diagram <a href="http://books.google.com/books?id=Z%5FQetkvQYScC&amp;pg=PA232&amp;lpg=PA232&amp;dq=asp.net+tabular+data+stream+oledb&amp;source=bl&amp;ots=X31IPETd%5F0&amp;sig=JE-R6eAtOzNhAq89-f4ryNI9DwU&amp;hl=en&amp;ei=ZET3Sv3TPI3QM-fG8egF&amp;sa=X&amp;oi=book%5Fresult&amp;ct=result&amp;resnum=1&amp;ved=0CAgQ6AEwAA#v=onepage&amp;q=&amp;f=false" rel="nofollow">here</a> which outlines the different paths.</p> <p>This question is also covered <a href="http://stackoverflow.com/questions/322766/is-there-a-difference-in-the-underlying-protocol-for-odbc-oledb-ado-net">here</a> on Stack Overflow.</p> http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why/1690492#1690492 1 Answer by Kyle B. for Asp.Net page with Ajax reload the whole page everytime, why? Kyle B. 2009-11-06T21:13:31Z 2009-11-06T21:13:31Z <p>I removed "ChildrenAsTriggers" and also set the "EventName" for the trigger.</p> <p>You may also need to call: UpdatePanel1.Update() inside your click function since your UpdatePanel is set as 'Conditional'.</p> <pre><code>&lt;form id="form1" runat="server"&gt; &lt;div&gt; This is the time : &lt;br /&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt;&lt;/asp:ScriptManager&gt; &lt;asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="conditional"&gt; &lt;ContentTemplate&gt; &lt;asp:TextBox ID="txtDate" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="btnRefresh" EventName="Click" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;br /&gt; &lt;asp:Button ID="btnRefresh" runat="server" text="Refresh" OnClick="btnRefresh_Click"/&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>Also, I would ensure you are using IsPostBack in your page load, which is still fired even on asynchronous postback.</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Clock c = new Clock(); string display = c.GetCurrentTime().ToLongTimeString(); this.Title = display; this.txtDate.Text = display; } } protected void btnRefresh_Click(object sender, EventArgs e) { Clock c = new Clock(); string display = c.GetCurrentTime().ToLongTimeString(); this.txtDate.Text = display; } </code></pre> http://stackoverflow.com/questions/1690057/credit-card-validation-with-jquery/1690089#1690089 4 Answer by Kyle B. for Credit Card validation with Jquery Kyle B. 2009-11-06T20:14:14Z 2009-11-06T20:14:14Z <p><a href="http://en.wikipedia.org/wiki/Luhn%5Falgorithm" rel="nofollow">http://en.wikipedia.org/wiki/Luhn%5Falgorithm</a></p> <p>You could minimize this below into a very small footprint in your code.</p> <pre><code>function isCreditCard( CC ) { if (CC.length &gt; 19) return (false); sum = 0; mul = 1; l = CC.length; for (i = 0; i &lt; l; i++) { digit = CC.substring(l-i-1,l-i); tproduct = parseInt(digit ,10)*mul; if (tproduct &gt;= 10) sum += (tproduct % 10) + 1; else sum += tproduct; if (mul == 1) mul++; else mul–; } if ((sum % 10) == 0) return (true); else return (false); } </code></pre> http://stackoverflow.com/questions/1689583/how-would-you-explain-the-term-web-services-to-a-non-technical-person/1689618#1689618 0 Answer by Kyle B. for How would you explain the term 'Web Services' to a non-technical person? Kyle B. 2009-11-06T19:03:20Z 2009-11-06T19:03:20Z <p>A web service is a mechanism for transmitting data between two different machines, regardless of the underlying operating system or software which runs on top of it. Examples of web services are receiving information about the weather, or local tax information by passing the service a postal code, or receiving tracking information from UPS, FedEx by passing it a tracking number.</p> http://stackoverflow.com/questions/1688696/building-asp-net-application-best-practices/1688919#1688919 1 Answer by Kyle B. for Building ASP.NET application - Best Practices Kyle B. 2009-11-06T16:58:53Z 2009-11-06T16:58:53Z <p>I would recommend a couple of books if you are interested in pursuing a journey to become a better, more productive developer. These books are language agnostic and as you can see by the user reviews, very very helpful.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete 2</a></p> <p><a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">Pragmatic Programmer</a></p> <p>If you are looking for a .NET specific book, you may appreciate the following book:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/073562710X" rel="nofollow">Microsoft Application Architecture Guide</a> [available online for free outside of print format]</p> http://stackoverflow.com/questions/1679483/c-and-jquery-strange-behaviour-on-postback/1688141#1688141 0 Answer by Kyle B. for C# and JQuery, strange behaviour on postback Kyle B. 2009-11-06T14:59:50Z 2009-11-06T14:59:50Z <p>Assuming you leave both pages on the same domain, I would suggest the following:</p> <ol> <li><p>With regard to the $.ajax url property "./B.aspx", is the "." necessary? I am used to using full relative paths (i.e. "/B.aspx" by itself).</p></li> <li><p>Have you tried firing up your debugger, and placing breakpoints on Page_Load for both A.aspx and also B.aspx? It may help you to deduce where the request is taking place and what is happening.</p></li> <li><p>Are you using a plug-in like Firebug (for Firefox), or Web Developer Tools (for IE8)? These tools will help you pinpoint any javascript errors. I find that if a Javascript error is fired on a page, it may prevent future javascript functions (such as __DoPostback) to not occur because the script as abnormally ended.</p></li> </ol> <p>Hope those suggestions help.</p> http://stackoverflow.com/questions/1687943/problem-casting-field-when-querying-spreadsheet/1688082#1688082 0 Answer by Kyle B. for Problem casting field when querying spreadsheet Kyle B. 2009-11-06T14:51:22Z 2009-11-06T14:51:22Z <p>I would change the following registry keys on your server (after having a backup of course):</p> <pre><code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Excel\ImportMixedTypes = Text HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Excel\TypeGuessRows = 0 </code></pre> <p>I would also modify your connection string to the following:</p> <pre><code>Dim sConnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &amp; Server.MapPath("/PathTo/YourFile/" &amp; Filename) &amp; ";" If chkUploadFileColumnsFirstRow.Checked Then sConnectionString &amp;= "Extended Properties='Excel 8.0;HDR=YES;IMEX=1'" Else sConnectionString &amp;= "Extended Properties='Excel 8.0;IMEX=1'" End If </code></pre> <p>If it fails after setting those criteria, I would feel something is wrong with either your sheet name, or the query itself.</p> http://stackoverflow.com/questions/354686/programming-related-songs/455436#455436 4 Answer by Kyle B. for Programming Related Songs Kyle B. 2009-01-18T16:43:52Z 2009-10-28T10:36:09Z <p>It's All About the Pentiums - Wierd Al</p> <p><a href="http://www.youtube.com/watch?v=Ky-JTAPhmUo" rel="nofollow">http://www.youtube.com/watch?v=Ky-JTAPhmUo</a></p> <p><a href="http://en.wikipedia.org/wiki/It%27s%5FAll%5FAbout%5Fthe%5FPentiums" rel="nofollow">http://en.wikipedia.org/wiki/It%27s_All_About_the_Pentiums</a></p> <blockquote> <p>What y'all wanna do?<br /> Wanna be hackers? Code crackers? Slackers<br /> Wastin' time with all the chatroom yakkers?<br /> 9 to 5, chillin' at Hewlett Packard?<br /> Workin' at a desk with a dumb little placard?<br /> Yeah, payin' the bills with my mad programming skills<br /> Defraggin' my hard drive for thrills<br /> I got me a hundred gigabytes of RAM<br /> I never feed trolls and I don't read spam<br /> Installed a T1 line in my house<br /> Always at my PC, double-clickin' on my mizouse<br /> Upgrade my system at least twice a day<br /> I'm strictly plug-and-play, I ain't afraid of Y2K<br /> I'm down with Bill Gates, I call him "Money" for short<br /> I phone him up at home and I make him do my tech support<br /> It's all about the Pentiums, what?<br /> You've gotta be the dumbest newbie I've ever seen<br /> You've got white-out all over your screen<br /> You think your Commodore 64 is really neato<br /> What kinda chip you got in there, a Dorito?<br /> You're usin' a 286? Don't make me laugh<br /> Your Windows boots up in what, a day and a half?<br /> You could back up your whole hard drive on a floppy diskette<br /> You're the biggest joke on the Internet<br /> Your database is a disaster<br /> You're waxin' your modem, tryin' to make it go faster<br /> Hey fella, I bet you're still livin' in your parents' cellar<br /> Downloadin' pictures of Sarah Michelle Gellar<br /> And postin' "Me too!" like some brain-dead AOL-er<br /> I should do the world a favor and cap you like Old Yeller<br /> You're just about as useless as jpegs to Hellen Keller </p> </blockquote> http://stackoverflow.com/questions/1603363/vs2008-not-picking-up-recently-added-web-controls 0 VS2008 not picking up recently added web controls Kyle B. 2009-10-21T20:22:40Z 2009-10-21T20:35:11Z <p>Has anyone had experience with VS2008 incorrectly identifying variables in the code-behind as not being defined on the .aspx page? How was this resolved? The page is executing properly without any runtime or compilation errors.</p> http://stackoverflow.com/questions/1603363/vs2008-not-picking-up-recently-added-web-controls/1603371#1603371 1 Answer by Kyle B. for VS2008 not picking up recently added web controls Kyle B. 2009-10-21T20:24:57Z 2009-10-21T20:24:57Z <p>Nevermind. Closing and re-opening the document in question seems to have resolved the problem. Anyone watch "The IT Crowd"? ... haha. "Have you tried turning it off and on again?" Seems to solve everything.</p> http://stackoverflow.com/questions/389318/ideal-net-architecture 7 Ideal .NET Architecture? Kyle B. 2008-12-23T16:17:58Z 2009-10-08T19:13:38Z <p>I'm writing this question from the standpoint of an ASP.NET application. However I realize it may be suited to other contexts as well.</p> <p>There are so many approaches to developing the common elements of an ASP.NET website. Here are a few I have come across:</p> <ul> <li>LLBLGen</li> <li>SubSonic</li> <li>LINQ to SQL</li> <li>Entity Framework</li> <li>CodeSmith + .netTiers</li> <li>NHibernate</li> <li>Hand coding DAL/BLL/Presentation</li> </ul> <p>I don't consider myself an expert developer by any means, however I do understand common OOP techniques well, and can get through all my projects just fine. I do however struggle with knowing how to 'architect' a site. By that, I mean, should I use <a href="http://en.wikipedia.org/wiki/Multitier%5Farchitecture" rel="nofollow">n-tier architecture</a>? Is that still the gold standard and the above tools just utilize that concept? I'm pretty sure I want to hold off on MVC until a future (or final) release. </p> <p><strong><em></strong>Edit: I have removed the portion of the question which deals with patterns (singleton, factory) after having more fully understood the separation of the question. Thank you for all who have answered this part so far, however, my main focus is on the architecture portion.<strong></em></strong></p> <p><em>Edit #2: I changed the title to be more of an agnostic question upon realizing this would apply to more than web-specific architecture.</em></p> <p><hr /></p> <p><strong>Question:</strong> What steps do I take as a first step, when I have sat down in front of a blank canvas (solution file) with all my pre-written documentation and system requirements in hand ? Where do I go from there?</p> http://stackoverflow.com/questions/1306649/obtaining-first-excel-sheet-name-with-oledbconnection/1462992#1462992 0 Answer by Kyle B. for Obtaining First Excel Sheet Name With OleDbConnection Kyle B. 2009-09-22T22:34:11Z 2009-09-22T22:34:11Z <pre><code>Dim dtSheetnames As DataTable = oleDBExcelConnection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, New Object() {Nothing, Nothing, Nothing, "TABLE"}) Dim FirstSheetName As String = dtSheetnames.Rows(0)!TABLE_NAME.ToString </code></pre> http://stackoverflow.com/questions/1330852/where-to-download-visual-studio-express-2005/1330915#1330915 1 Answer by Kyle B. for Where to download visual studio express 2005? Kyle B. 2009-08-25T20:48:14Z 2009-08-25T20:48:14Z <p>Small tip for you. Microsoft frequently has 'launch parties' or 'launch events' in which they frequently distribute licensed, not for resale copies, of that product. I've gotten the last two versions of VS (2005 and 2008) by attending my local .NET user group chapter during those days.</p> http://stackoverflow.com/questions/1318550/my-first-javascript-any-errors/1318562#1318562 1 Answer by Kyle B. for My first JavaScript. Any errors? Kyle B. 2009-08-23T13:34:59Z 2009-08-23T13:34:59Z <p>You have 'e' as a parameter to your function and also delcared via 'var e = ' inside your function. When a parameter is passed to your function it already exists as that name, and declaring a variable with the same name will cause an error. I would change either the name of the variable declared, the name of the parameter or assign it properly if that is the case. </p> http://stackoverflow.com/questions/1312199/palm-mojo-webos-ide-recommendation 1 Palm Mojo / WebOS IDE Recommendation Kyle B. 2009-08-21T14:11:07Z 2009-08-22T20:08:53Z <p>I'm a developer coming from Visual Studio 2008 looking to get my hands dirty writing some Palm Pre applications. I've heard a number of options for developing Palm Pre apps and am curious for a recommendation.</p> <p>So far I have heard:</p> <ol> <li>Eclipse IDE</li> <li>Eclipse IDE with Aptana Plug-in</li> <li>Aptana stand alone</li> <li>Plain text editor</li> </ol> <p>Could someone make a recommendation based on my past experience using visual studio? What seems to be the emerging standard?</p> <p>Also, it may be important to note that debugging is an important feature for me (as it should be with any developer... haha).</p> http://stackoverflow.com/questions/1173037/disable-google-toolbar-autofill 1 Disable Google Toolbar Autofill Kyle B. 2009-07-23T16:46:05Z 2009-08-22T02:26:08Z <p>The Google Toolbar's autofill feature has been the bane of my web development existance for the past several years. I have always settled on trying to create a timer control to check for changes since the developers epically failed to fire change events on controls. This has gotten further and further complicated when controls are buried inside nested repeaters, and then trying to tie it to an UpdatePanel is a further complication.</p> <p>Has anyone succesfully been able to prevent Google Toolbar from filling in form fields without renaming the field to something insignifcant? (note: This doesn't work for a 'State' dropdown, it even goes as far as to check field values).</p> <p>For as smart as Google employees are supposed to be, this was a grandly moronic oversight.</p> <p><strong>Update:</strong> For those who may be coming here looking for a solution. What I have found to work so far is you have ASP.net, is to use the server control "Timer" and to set this control as a trigger for the UpdatePanel. It helps to loop through and check for changed values. </p> <p>If you only have access to javascript, or are using another framework, then I found using the following function to work the best (I was trying to monitor state and zip changes. The focusElement is required because when hovering in a dropdownlist, it changes the selectedindex):</p> <pre><code> function MonitorChanges(sStateDropdownID, sZipCodeID, sHiddenStateFieldId, sHiddenZipFieldId, bDoPostback) { var state = $('#' + sStateDropdownID).val(); var zip = $('#' + sZipCodeID).val(); var hiddenstate = $('#' + sHiddenStateFieldId).val(); var hiddenzip = $('#' + sHiddenZipFieldId).val(); $('#' + sHiddenStateFieldId).val(state); $('#' + sHiddenZipFieldId).val(zip); var compareString = state + zip; var compareHiddenString = hiddenstate + hiddenzip; var focusElement = getElementWithFocus(); if (compareString != compareHiddenString &amp;&amp; isShippingZip(zip)) { bDoPostback = true } if (parseInt(focusElement.id.search('drpState')) == -1 &amp;&amp; parseInt(focusElement.id.search('txtZip')) == -1 &amp;&amp; bDoPostback) { bDoPostback = false; __doPostBack(sStateDropdownID, ''); } var f = function() { MonitorChanges(sStateDropdownID, sZipCodeID, sHiddenStateFieldId, sHiddenZipFieldId, bDoPostback); } setTimeout(f, 1000); } </code></pre> http://stackoverflow.com/questions/1307430/visual-studio-2008-find-dialog-takes-2s-to-appear/1307499#1307499 0 Answer by Kyle B. for Visual Studio 2008 Find dialog takes >2s to appear Kyle B. 2009-08-20T16:49:02Z 2009-08-20T16:49:02Z <p><a href="http://www.devexpress.com/Products/Visual%5FStudio%5FAdd-in/CodeRushX/" rel="nofollow">CodeRush Xpress</a> (free add-on) has a useful 'Quick Find' feature that tracks down line numbers, text matches, etc. </p> http://stackoverflow.com/questions/1263121/how-do-i-scroll-down-to-specified-id-tag-on-page-load/1263140#1263140 3 Answer by Kyle B. for How do I scroll down to specified ID Tag on page load? Kyle B. 2009-08-11T21:48:21Z 2009-08-11T21:48:21Z <p>Looks like there is a nice plug-in for jQuery available to do just that here: <a href="http://flesler.blogspot.com/2007/10/jqueryscrollto.html" rel="nofollow">http://flesler.blogspot.com/2007/10/jqueryscrollto.html</a></p> http://stackoverflow.com/questions/1246205/how-do-i-avoid-a-huge-bandwidth-bill-if-my-website-gets-popular/1246577#1246577 1 Answer by Kyle B. for How do I avoid a huge bandwidth bill if my website gets popular? Kyle B. 2009-08-07T19:30:39Z 2009-08-07T19:30:39Z <p>Cloud hosting (Azure, Amazon S-3) was built for scalability. They coin it 'utility computing' where you pay for what you use. </p> <p>From a purely monetary perspective, this is something most free websites have been dealing with. There are a lot of great artcles about the 'death of free' on the internet and other viable business models. Ad-supported models are dying off too as social networking sites are gobbling up impressions and people are becoming more attune to tuning them out. You may wish to persue a freemium model (one which you offer a teaser free version, and charge a higher version for something else). Other models like micropayments (think iTunes App Store) may work too. </p> <p>If all else fails, you could become a 'street pharmacist' for a few weeks and pay your bills until you get bought out :)</p> http://stackoverflow.com/questions/1242584/net-object-design 1 .NET Object Design Kyle B. 2009-08-07T02:23:57Z 2009-08-07T02:55:19Z <p>I have a series of objects I have created:</p> <p>Item</p> <p>Order</p> <p>Song</p> <p>etc.</p> <p>Each object has a reasonable number of properties, and I use a datareader where I pass it "SELECT * FROM .objectname." and then I fill a collection of objects, and return the collection. This works as: GetOrdersCollection(), GetSongsCollection(), etc.</p> <p>I understand SELECT * to be a performance problem, and additionally, sometimes I prefer to include additional columns in the select statement which do not exist in the object, and have those all returned as well.</p> <p>So my question is, what is the best way to approach this problem?</p> <ol> <li><p>Should I create a new object for every query type?</p></li> <li><p>I tried performing a check to see if column is in datareader before storing it, but this presents perf. issues. Is there a negligible perf. way to avoid IndexOutOfRange?</p></li> <li><p>Should I just use Datatable and read right from the table?</p></li> </ol> http://stackoverflow.com/questions/1230011/beginner-linq-to-xml-inline-xml-error 0 Beginner LINQ to XML inline XML error Kyle B. 2009-08-04T21:25:43Z 2009-08-04T22:53:16Z <pre><code>Imports System.Xml.Linq Imports System.Linq Partial Class test2 Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim xml As XElement = &lt;book&gt; &lt;title&gt;My Title&lt;/title&gt; &lt;author&gt;Kyle&lt;/author&gt; &lt;publisher&gt;WROX&lt;/publisher&gt; &lt;/book&gt; End Sub End Class </code></pre> <p>The above code is producing the following error:</p> <pre><code>Compiler Error Message: BC30201: Expression expected. Source Error: Line 8: Line 9: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Line 10: Dim xml As XElement = &lt;book&gt; Line 11: &lt;title&gt;My Title&lt;/title&gt; Line 12: &lt;author&gt;Kyle&lt;/author&gt; Source File: C:\Inetpub\wwwroot\myproject\web\test2.aspx.vb Line: 10 </code></pre> <p>Why?</p> <p><strong>edit:</strong></p> <pre><code>Dim xml As XElement = New XElement("book", _ New XElement("title", "My Title"), _ New XElement("author", "Kyle"), _ New XElement("publisher", "WROX") _ ) </code></pre> <p><em>The above code works, but obviously is not as elegant as the original and I would still appreciate an explanation of why my original syntax is wrong.</em></p> http://stackoverflow.com/questions/1759370/converting-some-legacy-vb-net-code-to-c-what-is-it-doing Comment by Kyle B. on Converting some legacy VB.NET code to C#, what is it doing? Kyle B. 2009-11-18T22:28:15Z 2009-11-18T22:28:15Z Not sure if you were aware of this site already, but I use it when converting code as a quick solution: <a href="http://converter.telerik.com/" rel="nofollow">converter.telerik.com</a> http://stackoverflow.com/questions/1757709/getting-rid-of-microsoft-ajax/1758226#1758226 Comment by Kyle B. on Getting rid of Microsoft AJAX Kyle B. 2009-11-18T21:01:26Z 2009-11-18T21:01:26Z This solves your stated problem &quot;it is bloated and we don't use UpdatePanel&quot;. The new framework (as explained in the posted link) resolves those issues. http://stackoverflow.com/questions/1734830/which-problem-would-you-like-to-solve-given-enough-resources/1734981#1734981 Comment by Kyle B. on Which problem would you like to solve given enough resources? Kyle B. 2009-11-18T19:00:31Z 2009-11-18T19:00:31Z Cookies, session data, and postbacks won't be necessary evils. Not sure why this was downvoted, as I thought it rather obvious. http://stackoverflow.com/questions/1731283/net-httpsessionstate-case-insensitivity/1731312#1731312 Comment by Kyle B. on .NET HttpSessionState Case Insensitivity Kyle B. 2009-11-13T19:26:14Z 2009-11-13T19:26:14Z In VB.net, this code equates to false: Dim myString As String = &quot;foo&quot; Response.Write(myString = &quot;Foo&quot;) http://stackoverflow.com/questions/1723479/calling-js-function-in-external-js-file Comment by Kyle B. on Calling js function in external js file Kyle B. 2009-11-12T16:27:47Z 2009-11-12T16:27:47Z Using a console debugger (like Web Developer Tools for IE8, or Firebug for Firefox would provide you with a meaningful error message, which you could post along with your code. http://stackoverflow.com/questions/1715902/future-of-android-development/1715965#1715965 Comment by Kyle B. on Future of Android Development Kyle B. 2009-11-11T22:39:52Z 2009-11-11T22:39:52Z Ben, flagged yours as the answer even though I know we are all just speculating. I still feel 'Go', if it is embraced by developers, will become the language for Android. Since I have no way to confirm this, and people liked your answer the best, I chose yours as the answer :) http://stackoverflow.com/questions/1715902/future-of-android-development Comment by Kyle B. on Future of Android Development Kyle B. 2009-11-11T22:37:02Z 2009-11-11T22:37:02Z John, I understand that there will be no definitive answer. I was merely searching for an opinion or theory from those of us (including you I suppose), who have experienced trends in development tools and providing a hypothesis on where this could be headed. The question was in-fact tagged 'subjective'. http://stackoverflow.com/questions/1701754/ie8-javascript-doesnt-run-unless-developer-tools-is-open/1701767#1701767 Comment by Kyle B. on IE8 Javascript doesnt run unless Developer Tools is open? Kyle B. 2009-11-09T15:40:25Z 2009-11-09T15:40:25Z I usually use: if (console) { console.log(object); } http://stackoverflow.com/questions/1698126/trying-to-add-a-where-clause-for-rownumber/1698133#1698133 Comment by Kyle B. on Trying to add a where clause for row_number Kyle B. 2009-11-08T22:30:32Z 2009-11-08T22:30:32Z Are you sure? Wouldn't that be less efficient? I believe that would return the entire result-set (of potentially hundreds of thousands), then select the first 200 records. My solution obtains only 200 records, then selects those with rownumber &gt; 5. http://stackoverflow.com/questions/1698127/cannot-download-any-file-from-internet Comment by Kyle B. on Cannot download any file from Internet Kyle B. 2009-11-08T22:28:16Z 2009-11-08T22:28:16Z Tip: post this question on superuser.com . Stackoverflow.com is for programming related questions. http://stackoverflow.com/questions/1690364/asp-net-page-with-ajax-reload-the-whole-page-everytime-why/1690465#1690465 Comment by Kyle B. on Asp.Net page with Ajax reload the whole page everytime, why? Kyle B. 2009-11-06T21:17:27Z 2009-11-06T21:17:27Z This shouldn't matter, because the button is not a child of the updatepanel, it falls outside the updatepanel. http://stackoverflow.com/questions/1687943/problem-casting-field-when-querying-spreadsheet/1688082#1688082 Comment by Kyle B. on Problem casting field when querying spreadsheet Kyle B. 2009-11-06T15:08:52Z 2009-11-06T15:08:52Z I use the SqlBulkCopy class and read data from the spreadsheet, and import it into a temporary table which then matches the data types you are looking to compare to. If you read in all strings, you can make assumptions about data types in the temporary table. http://stackoverflow.com/questions/1596836/jquery-works-in-firefox-when-firebug-is-running-does-not-work-when-firebug-is-no/1688108#1688108 Comment by Kyle B. on jQuery works in Firefox when Firebug is running, does not work when Firebug is NOT running Kyle B. 2009-11-06T15:01:15Z 2009-11-06T15:01:15Z +1 I liked this answer as it offered a work-around which would allow both scenarios to function properly. http://stackoverflow.com/questions/1688065/including-not-found-criteria-in-the-result Comment by Kyle B. on Including not found criteria in the result Kyle B. 2009-11-06T14:54:10Z 2009-11-06T14:54:10Z Could you elaborate more on what you mean by &quot;values for BUnit are constructed dynamically&quot;? To me the query looks correct given the data you have provided. http://stackoverflow.com/questions/1019730/net-log-or-view-call-response-of-a-soap-webservice/1019820#1019820 Comment by Kyle B. on .NET Log or View Call / Response of a SOAP WebService Kyle B. 2009-09-27T16:40:36Z 2009-09-27T16:40:36Z Thanks... this was the resolution to a rather lengthy search.