User Joshua Hudson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T08:00:14Zhttp://stackoverflow.com/feeds/user/6232http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source2GridView - Show headers on empty data source.Joshua Hudson2008-12-09T21:52:20Z2009-10-08T23:09:36Z
<p>In C# how do I still show the headers of a gridview, even with the data source is empty. </p>
<p>I am not auto generating the columns as they are all predefined. </p>
<p>Currently what I am doing is the following.</p>
<p>Get a DataTable back from a stored procedure, then set the DataSource of the gridview, and then call DataBind().</p>
<p>This works fine when I have data, but when no rows are returned then I just get a blank spot where the grid should be.</p>
http://stackoverflow.com/questions/1264326/file-transfer-using-ftp/1264338#12643381Answer by Joshua Hudson for File Transfer using FTPJoshua Hudson2009-08-12T05:19:48Z2009-09-02T03:08:06Z<p>For this you could use: FtpWebRequest.</p>
<p>Here is a great example. I hate linking to another site, but it has an example with it for uploading and downloading using FTP.</p>
<p><a href="http://www.c-sharpcorner.com/uploadfile/neo%5Fmatrix/simpleftp01172007082222am/simpleftp.aspx" rel="nofollow">http://www.c-sharpcorner.com/uploadfile/neo%5Fmatrix/simpleftp01172007082222am/simpleftp.aspx</a></p>
http://stackoverflow.com/questions/1286148/asp-net-membership/1286152#12861523Answer by Joshua Hudson for ASP.net - membershipJoshua Hudson2009-08-17T04:28:41Z2009-08-17T04:28:41Z<p>Look in the app_data folder, which is a part of your project. There should be a database file in there. Unless you manually created the aspnetdb, using the aspnet_regsql.exe command, a database will be created for you in that folder. </p>
http://stackoverflow.com/questions/1263527/better-word-for-inferring-variables-other-than-var-c/1263539#12635391Answer by Joshua Hudson for Better word for inferring variables other than var - C#Joshua Hudson2009-08-11T23:30:58Z2009-08-11T23:30:58Z<p>I think this is a great idea. I myself have had to explain the var keyword from time to time and how it is really just a placeholder for a type and that it still insures strong typing. </p>
<p><strong><em>infer</em></strong> works for me! :)</p>
http://stackoverflow.com/questions/1263379/why-are-static-methods-not-usable-as-web-service-operations-in-asmx-web-services/1263401#12634011Answer by Joshua Hudson for Why are Static Methods not Usable as Web Service Operations in ASMX Web Services ? Joshua Hudson2009-08-11T22:46:27Z2009-08-11T22:51:28Z<p>When a client creates an object for your web service, what they are really creating is a proxy object to that web service. This proxy object handles things like opening and closing your connections for you as well as all the overhead of actually working with the web service. A static method call would be difficult to manage. The "static proxy" for lack of a better word would have to do all of things that the instance of the proxy object is doing each and every time a client called one of the static methods, thus adding massive overhead.</p>
http://stackoverflow.com/questions/354775/where-can-i-find-a-good-sample-asp-net-database-driven-web-application/354785#3547851Answer by Joshua Hudson for Where can I find a Good Sample ASP.NET Database Driven Web Application? Joshua Hudson2008-12-10T01:01:07Z2008-12-10T01:01:07Z<p>For 1 through 3, I would recommend downloading some of the ASP.NET starter kits. I'm not sure if they work with Oracle though.</p>
<p>Some of the bigger frameworks are also great starts like DotNetNuke. They make great use of best practices.</p>
<p><a href="http://www.asp.net/community/projects/" rel="nofollow">http://www.asp.net/community/projects/</a></p>
http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/354391#3543912Answer by Joshua Hudson for GridView - Show headers on empty data source.Joshua Hudson2008-12-09T21:59:50Z2008-12-09T22:05:21Z<p>After posting this I did come up with a way that works. However, I don't feel it is the best way to handle this. Any suggestions on a better one?</p>
<pre><code>//Check to see if we get rows back, if we do just bind.
if (dtFunding.Rows.Count != 0)
{
grdFunding.DataSource = dtFunding;
grdFunding.DataBind();
}
else
{
//Other wise add a emtpy "New Row" to the datatable and then hide it after binding.
dtFunding.Rows.Add(dtFunding.NewRow());
grdFunding.DataSource = dtFunding;
grdFunding.DataBind();
grdFunding.Rows[0].Visible = false;
}
</code></pre>
http://stackoverflow.com/questions/354008/need-to-speed-up-this-query-in-sql-server/354049#3540490Answer by Joshua Hudson for Need to speed up this query in SQL ServerJoshua Hudson2008-12-09T20:06:29Z2008-12-09T20:06:29Z<p>You can search millions of records in a few seconds with good optimization. Though StingyJack is right in that without knowing the DDL, optimization of any query is tough.</p>
<p>Things to do though when optimizing a query though is look the execution plan. Nested loops and the like are bad. Also make sure you are fully indexed as well. You mention nothing of the indexes of the tables in question. Without indexes 30 - 50k rows could take a while with that many joins.</p>
http://stackoverflow.com/questions/349605/what-is-a-good-project-management-software-for-many-small-projects/349680#3496801Answer by Joshua Hudson for What is a good project management software for many small projects?Joshua Hudson2008-12-08T14:16:54Z2008-12-08T14:16:54Z<p>I would say <a href="http://www.fogbugz.com" rel="nofollow">fogbugz</a>. It all depends on cost though. Most of the products/apps mentioned in the question are free or open source. If cost is a problem then one of those apps would be great. </p>
<p>The other nice thing about <a href="http://www.fogbugz.com" rel="nofollow">fogbugz</a> is they can host it for you. For such a small team you may not want to worry about hosting the other software products yourself and making sure they are backed up and all that.</p>
<p>Just things to think about. I have tried most of those products and settled on <a href="http://www.fogbugz.com" rel="nofollow">fogbugz</a> in the end. I am also a part of a very small team and it worked great.</p>
http://stackoverflow.com/questions/348699/data-in-a-tree-structure/348705#3487051Answer by Joshua Hudson for data in a tree structureJoshua Hudson2008-12-08T05:20:00Z2008-12-08T05:20:00Z<p>Could you clarify your question? </p>
<p>I'm don't think you can view a sql query result in a tree form, regardless of how the data is stored. You would have to take the data back to another language and map it out or display it there.</p>
<p>Without more information on your question though, I'm not sure what else I can give you.</p>
http://stackoverflow.com/questions/341338/sql-changing-a-value-to-upper-or-lower-case0SQL changing a value to upper or lower caseJoshua Hudson2008-12-04T17:02:50Z2008-12-04T17:10:41Z
<p>How do you make a field in a sql select statement all upper or lower case?</p>
<p>Example:</p>
<p>select firstname from Person</p>
<p>How do I make firstname always return upper case and likewise always return lower case?</p>
http://stackoverflow.com/questions/331607/c-foreach-within-a-foreach-loop/331643#3316431Answer by Joshua Hudson for C# foreach within a foreach loop.Joshua Hudson2008-12-01T17:54:44Z2008-12-01T17:54:44Z<p>I don't see a problem with this as long as you don't change doc.Bodies inside the inner loop, as this would cause things to blow up. But in theory this would work. As for optimization I'm not sure if it is best, but it is possible.</p>
http://stackoverflow.com/questions/299798/sql-reporting-services-2005-printing-in-firefox/299824#2998242Answer by Joshua Hudson for SQL Reporting Services 2005 - Printing in FireFoxJoshua Hudson2008-11-18T19:21:36Z2008-11-18T19:21:36Z<p>I think your only option here is to export to pdf or another format and then print. </p>
<p>The print button on the toolbar is an activex control, which is not and probably will not be supported in firefox.</p>
http://stackoverflow.com/questions/223283/net-exe-memory-footprint/223301#2233012Answer by Joshua Hudson for .Net exe memory footprintJoshua Hudson2008-10-21T20:06:44Z2008-10-21T20:06:44Z<p>The task manager does not show real life usage of memory for a .NET app. To see that you almost have to put a performance counter on the app or use a profiler.</p>
<p>What you see in the Task Manager is the working memory of an app which includes a bunch of overhead for the framework itself which must also load when your app loads.</p>
http://stackoverflow.com/questions/210745/asp-net-javascript-modal-window1Asp.Net: Javascript Modal WindowJoshua Hudson2008-10-17T00:28:21Z2008-10-17T08:51:10Z
<p>I would like to create a javascript modal pop up window to get some values from a user in a ASP.Net 2.0 webpage.</p>
<p>The basic idea is this. When a user clicks a button, a modal window will come up and ask 3 or 4 questions. The asp.net page will not be able to be changed while this window is up. Once the questions have been answered I need to grab the values from this window so the asp.net page has access to them and can handle them in the code behind.</p>
<p>Can I please get some examples on how you would implement this scenario. </p>
http://stackoverflow.com/questions/176195/should-i-sanitize-html-markup-for-a-hosted-cms/176220#1762200Answer by Joshua Hudson for Should I sanitize HTML markup for a hosted CMS?Joshua Hudson2008-10-06T21:14:10Z2008-10-06T21:14:10Z<p>I think you should always sanitize the input. Most people use a CMS because they don't want to create their own website from scratch and they want easy access to edit their pages. These users most likely will not be trying to put in text that would get sanitized, but by protecting against it you are protecting their users.</p>
http://stackoverflow.com/questions/135533/ms-crm-development-projects/135554#1355541Answer by Joshua Hudson for MS CRM Development ProjectsJoshua Hudson2008-09-25T19:45:59Z2008-09-25T19:45:59Z<p>I did some work with CRM 3.0. My work enhanced the program and turned it into a Document Management app, where you could scan and upload documents based on a case, contact, customer, vendor ect. The .NET SDK back then could of used a bit more work, but I hear with newer versions of CRM it has gotten better. CRM allows for attachments but not at all levels, more at the case level.</p>
http://stackoverflow.com/questions/77531/where-do-i-enter-the-windows-server-2008-key-after-installing-it/77550#775500Answer by Joshua Hudson for Where do I enter the Windows Server 2008 key after installing it?Joshua Hudson2008-09-16T21:50:48Z2008-09-16T21:50:48Z<p>I know in Vista this is done from the system control panel. I would check there in Server 2008.</p>
http://stackoverflow.com/questions/69384/opinion-of-hosted-svn-providers/69414#694143Answer by Joshua Hudson for Opinion of Hosted SVN providers?Joshua Hudson2008-09-16T04:36:28Z2008-09-16T04:36:28Z<p>I've used BeanStalk pretty much since they started. They had a rough moment or two at first, but have recently moved data centers and with that move I have had zero problems with them. They have an excellent UI for web browsing. Could not be happier and the price is great. </p>
<p>Security/privacy is always a concern I guess, but I don't worry about it much. I'm the only developer and just use Beanstalk as a single place to store my code as I work on it.</p>
http://stackoverflow.com/questions/2250/datatable-vs-dataset/61086#610860Answer by Joshua Hudson for Datatable vs DatasetJoshua Hudson2008-09-14T03:07:27Z2008-09-14T03:07:27Z<p>On major difference is that DataSets can hold multiple tables and you can define relationships between those tables. </p>
<p>If you are only retuning a single result set though I would think a DataTable would be more optimized. I would think there has to be some overhead (granted small) to offer the functionality a DataSet does and keep track of multiple DataTables. </p>
http://stackoverflow.com/questions/9304/c-3-0-auto-properties-useful-or-not/61083#610830Answer by Joshua Hudson for C# 3.0 Auto-Properties - useful or not?Joshua Hudson2008-09-14T03:00:14Z2008-09-14T03:00:14Z<p>I love them. They are a real time saver for me. They also help make the code more readable in my opinion. :)</p>
http://stackoverflow.com/questions/61008/what-steps-should-be-necessary-to-optimize-a-poorly-performing-query/61080#610801Answer by Joshua Hudson for What steps should be necessary to optimize a poorly performing query?Joshua Hudson2008-09-14T02:45:22Z2008-09-14T02:45:22Z<p>The execution plan is a great start and will help you figure out what part of your query you need to tackle.</p>
<p>Once you figure out the where, it is time to tackle the how and why. Take a look at the type of queries you are trying to preform. Avoid loops at all cost as they are slow. Avoid cursors at all costs because they are slow. Stick to set based queries when ever possible. </p>
<p>There are ways to give sql hints on the type of joins to use if you are using joins. Be careful here though, while one hint may speed up your query once, it may slow down your query 10 fold the next time through depending on the data and parameters.</p>
<p>Finally, make sure your database is well indexed. A good place to start is any field that is contained in a where clause probably should have a index on it.</p>
http://stackoverflow.com/questions/60240/project-tracking-management-tool/60329#6032910Answer by Joshua Hudson for Project tracking/management toolJoshua Hudson2008-09-13T04:25:36Z2008-09-13T04:25:36Z<p>Matt, they don't advertise it for some reason but here is how you get it:</p>
<p>Sign up for the FogBugz on Demand 45 day trial account. Then in your settings choose "Your FogBugz On Demand Account".</p>
<p>About half way down that page is a link to switch your account to the "Student and Startup Edition)" which allows you to have up to 2 users for free, with no expiration.</p>
http://stackoverflow.com/questions/60240/project-tracking-management-tool/60318#603181Answer by Joshua Hudson for Project tracking/management toolJoshua Hudson2008-09-13T04:01:59Z2008-09-13T04:01:59Z<p>I also use FogBugz. For small projects (less then 2 people) they have a free hosted version.</p>
http://stackoverflow.com/questions/59270/what-is-the-best-way-to-rollout-web-applications/60317#603170Answer by Joshua Hudson for What is the best way to rollout web applications?Joshua Hudson2008-09-13T03:59:07Z2008-09-13T03:59:07Z<p>I work for a state agency and we do all our deployments using a product called RepliWeb.</p>
<p>It works good because as dev's we have no control over the webservers. But we can deploy to a deployment area and run the RepliWeb job to do the deployment. Not sure on pricing though... </p>
http://stackoverflow.com/questions/52608/is-subversion-version-control-necessary-for-a-small-development-group-1-2-prog/60310#603100Answer by Joshua Hudson for Is Subversion (Version Control) Necessary For A Small Development Group (1-2 programmers)?Joshua Hudson2008-09-13T03:41:55Z2008-09-13T03:41:55Z<p>Yes, even if you are the only person source control is a must. Of course you will not be using it to control who is working on which files, but having the ability to role back if you make a big mistake in your code is really a no-brainer.</p>
http://stackoverflow.com/questions/1389941/renewing-a-wildcard-ssl-certificate-in-iis-6-1024-to-2048-bitComment by Joshua Hudson on Renewing a wildcard SSL certificate in IIS 6 (1024 to 2048 bit)Joshua Hudson2009-09-07T15:48:41Z2009-09-07T15:48:41ZThis should be asked on serverfault.com. I dont' have enough rep to move it though.http://stackoverflow.com/questions/354369/gridview-show-headers-on-empty-data-source/1381902#1381902Comment by Joshua Hudson on GridView - Show headers on empty data source.Joshua Hudson2009-09-05T02:51:51Z2009-09-05T02:51:51ZThis would be a good question. You won't get any responses asking a question in response to another question.http://stackoverflow.com/questions/1342431/logging-all-yellow-screen-of-deaths-even-when-its-a-compilation-problemComment by Joshua Hudson on Logging all yellow screen of deaths, even when its a compilation problemJoshua Hudson2009-08-27T17:07:33Z2009-08-27T17:07:33ZGreat question. If things die very early in an app it is hard to even try to log. Looking forward to what others have to say.http://stackoverflow.com/questions/1311669/getting-fc11-to-run-under-vmware-server-converted-from-physical-machineComment by Joshua Hudson on Getting FC11 to run under VMware Server, converted from physical machineJoshua Hudson2009-08-21T12:34:28Z2009-08-21T12:34:28ZThis should probably be over at serverfault.com. http://stackoverflow.com/questions/1286148/asp-net-membership/1286152#1286152Comment by Joshua Hudson on ASP.net - membershipJoshua Hudson2009-08-17T14:05:34Z2009-08-17T14:05:34ZCorrection: Not ASP.net page, I meant ASP.net tab.http://stackoverflow.com/questions/1286148/asp-net-membership/1286152#1286152Comment by Joshua Hudson on ASP.net - membershipJoshua Hudson2009-08-17T14:05:02Z2009-08-17T14:05:02ZAhh yes, that would be use if you were using IIS to host your pages. When you click on the virtual directory for your site in IIS there is a new ASP.net page. Since i'm assuming you are just using the built in visual studio host (You click run or debug and the page just opens), you can just edit the web.config.http://stackoverflow.com/questions/1286148/asp-net-membership/1286152#1286152Comment by Joshua Hudson on ASP.net - membershipJoshua Hudson2009-08-17T04:33:05Z2009-08-17T04:33:05Zgoogle the aspnet_regsql.exe command. It is used to create all the tables you need. Here is a pretty good walkthrough for using it with sql 2000. <a href="http://weblogs.asp.net/scottgu/archive/2005/08/25/423703.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/…</a>
http://stackoverflow.com/questions/1280409/accessing-localhostComment by Joshua Hudson on accessing localhost??Joshua Hudson2009-08-14T21:56:56Z2009-08-14T21:56:56ZCan you clarify? You want others outside your modem to go through the dynamic ip and load your site, but if you are internal you want it just to load the localhost? Also internal to your pc? Or from any machine on your network?http://stackoverflow.com/questions/1263379/why-are-static-methods-not-usable-as-web-service-operations-in-asmx-web-services/1263401#1263401Comment by Joshua Hudson on Why are Static Methods not Usable as Web Service Operations in ASMX Web Services ? Joshua Hudson2009-08-12T13:51:50Z2009-08-12T13:51:50ZThen we must agree to disagree and be done with it.http://stackoverflow.com/questions/1264326/file-transfer-using-ftp/1264355#1264355Comment by Joshua Hudson on File Transfer using FTPJoshua Hudson2009-08-12T05:32:03Z2009-08-12T05:32:03ZJon Skeet for the win! :)http://stackoverflow.com/questions/1264216/how-can-i-make-pictureboxe-on-the-form-more-fastly-on-runtime-in-net-winforms/1264284#1264284Comment by Joshua Hudson on How can i make pictureboxe on the form more fastly on runtime in .net winforms?Joshua Hudson2009-08-12T05:26:52Z2009-08-12T05:26:52Zqulzam, It was only a suggestion. Didn't say it would work :P
2/100ths of a second should not be noticeable. Even 30 images only adds 60/100ths to the total time of the load.http://stackoverflow.com/questions/1264216/how-can-i-make-pictureboxe-on-the-form-more-fastly-on-runtime-in-net-winforms/1264284#1264284Comment by Joshua Hudson on How can i make pictureboxe on the form more fastly on runtime in .net winforms?Joshua Hudson2009-08-12T05:24:16Z2009-08-12T05:24:16ZCaleb, no it does not, but you are still thrashing it on heavy usage. I've used this trick on something that is CPU intensive and it brought the cpu usage from pegging at 100% to 20% with very little time difference. It was only a suggestion on something to try.http://stackoverflow.com/questions/1264305/are-there-any-projects-with-source-code-to-download-developed-in-mvc-framework/1264310#1264310Comment by Joshua Hudson on Are there any projects with source code to download, developed in mvc framework ?Joshua Hudson2009-08-12T05:15:32Z2009-08-12T05:15:32ZGot me by like 18 seconds. +1http://stackoverflow.com/questions/1264216/how-can-i-make-pictureboxe-on-the-form-more-fastly-on-runtime-in-net-winforms/1264249#1264249Comment by Joshua Hudson on How can i make pictureboxe on the form more fastly on runtime in .net winforms?Joshua Hudson2009-08-12T04:52:37Z2009-08-12T04:52:37ZI agree with Charlie. He gave some good examples of how to fix your problem. Load the files into memory first and then add them to the panel. Plus do this operation on a background thread or separate thread so that the app does not freeze while you load 20 - 30 images. http://stackoverflow.com/questions/1263379/why-are-static-methods-not-usable-as-web-service-operations-in-asmx-web-servicesComment by Joshua Hudson on Why are Static Methods not Usable as Web Service Operations in ASMX Web Services ? Joshua Hudson2009-08-12T04:37:22Z2009-08-12T04:37:22Z@Aaron. Just remember your ABC's of WCF and you are good to go (Address, Binding, Contract). The benefits FAR outweigh the learning. Also since you are writing contracts you think more about the data you are going to expose with your services, which is always a plus. Finally, the ability to expose a service with multiple bindings really is the slick part.