Kyle B.

1,335
Reputation
243 views

Registered User

Name Kyle B.
Member for 1 year
Seen yesterday
Website
Location Chicago, IL
Age 29
Web developer (ASP.net, jQuery, webOS), technology enthusiast, and aspiring chef.

http://twitter.com/kyleballard
Nov
18
comment Converting some legacy VB.NET code to C#, what is it doing?
Not sure if you were aware of this site already, but I use it when converting code as a quick solution: converter.telerik.com
Nov
18
comment Getting rid of Microsoft AJAX
This solves your stated problem "it is bloated and we don't use UpdatePanel". The new framework (as explained in the posted link) resolves those issues.
Nov
18
answered How do I make a Textbox Postback on KeyUp?
Nov
18
answered Getting rid of Microsoft AJAX
Nov
18
answered Error: [Exception… “Access to restricted URI denied” … while calling $.ajax method
Nov
13
answered What is the best way to jump from one textbox to another using the Microsoft client-side AJAX Library?
Nov
13
answered Need some help with SQL GroupBY
Nov
13
awarded  Popular Question
Nov
12
comment Calling js function in external js file
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.
Nov
11
comment Future of Android Development
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 :)
Nov
11
comment Future of Android Development
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'.
Nov
11
asked Future of Android Development
Nov
9
answered How often is the Application store refreshed in an ASP.Net Website?
Nov
9
accepted How to convert string[] to ArrayList?
Nov
9
comment IE8 Javascript doesnt run unless Developer Tools is open?
I usually use: if (console) { console.log(object); }
Nov
9
answered How to convert string[] to ArrayList?
Nov
8
comment Trying to add a where clause for row_number
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 > 5.
Nov
8
accepted Trying to add a where clause for row_number
Nov
8
comment Cannot download any file from Internet
Tip: post this question on superuser.com . Stackoverflow.com is for programming related questions.
Nov
8
answered Trying to add a where clause for row_number
Nov
8
answered Asp.net web application with MySQL
Nov
6
comment Asp.Net page with Ajax reload the whole page everytime, why?
This shouldn't matter, because the button is not a child of the updatepanel, it falls outside the updatepanel.
Nov
6
answered Asp.Net page with Ajax reload the whole page everytime, why?
Nov
6
accepted Credit Card validation with Jquery
Nov
6
answered Credit Card validation with Jquery
Nov
6
answered How would you explain the term ‘Web Services’ to a non-technical person?
Nov
6
answered Building ASP.NET application - Best Practices
Nov
6
comment Problem casting field when querying spreadsheet
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.
Nov
6
comment jQuery works in Firefox when Firebug is running, does not work when Firebug is NOT running
+1 I liked this answer as it offered a work-around which would allow both scenarios to function properly.
Nov
6
answered C# and JQuery, strange behaviour on postback
Nov
6
comment Including not found criteria in the result
Could you elaborate more on what you mean by "values for BUnit are constructed dynamically"? To me the query looks correct given the data you have provided.
Nov
6
answered Problem casting field when querying spreadsheet
Oct
21
answered VS2008 not picking up recently added web controls
Oct
21
asked VS2008 not picking up recently added web controls
Sep
27
comment .NET Log or View Call / Response of a SOAP WebService
Thanks... this was the resolution to a rather lengthy search.
Sep
22
answered Obtaining First Excel Sheet Name With OleDbConnection
Sep
13
awarded  Yearling
Sep
4
awarded  Good Answer
Aug
25
comment Where to download visual studio express 2005?
2008 has 'multi-targeting' (I believe this is in the express version) so you could target the 2.0 framework if that is your reasoning.
Aug
25
answered Where to download visual studio express 2005?
Aug
23
answered My first JavaScript. Any errors?
Aug
23
comment Palm Mojo / WebOS IDE Recommendation
That is what I went with... thanks. Also, setting up PuTTY to ssh into device/emulator worked for debugging.
Aug
22
comment Debugging Mojo for Palm Pre with Eclipse & Aptana
I successfully got in via ssh and used the 'log' command, but what is the appropriate way to stop logging? 'quit', 'exit' etc. seem to be non-responsive.
Aug
22
comment Disable Google Toolbar Autofill
I will accept your answer, however it mentions this is for an upcoming release, not a current release of the toolbar. It still leaves me S.O.L. for anyone who doesn't upgrade, ultimately producing the drawn out IE6 effect, which just sucks. Dumb move google, dumb move...
Aug
21
asked Palm Mojo / WebOS IDE Recommendation
Aug
20
answered Visual Studio 2008 Find dialog takes >2s to appear
Aug
15
accepted How do I scroll down to specified ID Tag on page load?
Aug
11
answered How do I scroll down to specified ID Tag on page load?
Aug
11
awarded  Citizen Patrol
Aug
10
comment Remove the last character in a string in T-SQL?
Alternatively: SELECT LEFT(YourColumnName, LEN(YourColumnName) - 1) FROM YourTable