User John Christensen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T05:18:06Z http://stackoverflow.com/feeds/user/1194 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1829062/event-issue-with-asp-net-update-panel/1829104#1829104 1 Answer by John Christensen for Event issue with ASP.net Update Panel John Christensen 2009-12-01T21:36:51Z 2009-12-01T21:36:51Z <p>Two answers for the price of one:</p> <ol> <li><p>Are you calling DataBind() in your Page_Load? If you do that on a PostBack, you will lose events. Replace the call with the following:</p> <p>if (!IsPostBack) { DataBind(); }</p></li> <li><p>If your DropDownList is outside your UpdatePanel, you need to add a Trigger as follows:</p></li> </ol> <blockquote> <pre><code>&lt;asp:UpdatePanel ID="UpdatePanel6" runat="server" ChildrenAsTriggers="true" UpdateMode="Conditional" &gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="dropdownGroup" EventName="SelectedIndexChanged" /&gt; &lt;/Triggers&gt; &lt;ContentTemplate&gt; &lt;ucControlName:ControlName ID="ControlName1" runat="server" /&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> </blockquote> http://stackoverflow.com/questions/1828971/capturing-the-first-match-with-regex-c/1829067#1829067 1 Answer by John Christensen for Capturing the first match with regex (C#) John Christensen 2009-12-01T21:31:25Z 2009-12-01T21:31:25Z <p>The bracketing * characters around your expression are causing your trouble. Remember you don't need a regular expression that matches the <em>entire</em> string - you want it to match only a particular pattern when it appears. The following code works:</p> <pre><code> Regex pattern = new Regex(@"\d(?&lt;name&gt;.*?)\d"); MatchCollection matches = pattern.Matches("This hopefully will pick up 1Bob9error1 as a name"); Console.WriteLine(matches[0].Groups["name"]); </code></pre> http://stackoverflow.com/questions/1822469/deploying-a-website-from-subversion/1822496#1822496 3 Answer by John Christensen for Deploying a Website from Subversion John Christensen 2009-11-30T21:25:27Z 2009-11-30T21:25:27Z <p>You're missing a piece here, basically - you shouldn't use subversion alone to deploy to test and production. Your best bet is to use some sort of script which will pull the build from subversion (if use svn export, it won't bring along subversion file hooks), build any necessary files (using MSBuild, which can be scripted), remove the unecessary files (such as .aspx.cs files since you've built the thing), and copy it over to your environment.</p> <p>Locally, we use powershell to glue everything together and a combination of the svn command line, MSBuild, and nUnit from the command line to do our builds.</p> http://stackoverflow.com/questions/1822455/how-to-manage-feedback-from-testers/1822476#1822476 0 Answer by John Christensen for How to manage feedback from testers? John Christensen 2009-11-30T21:22:54Z 2009-11-30T21:22:54Z <p>The use pattern you've explained actually seems like it fits the bill. You might want to define a certain-well defined set of conditions in which the case gets a higher priority - if it causes a crash, for instance, you might want to tackle that immediately. Be careful about putting in too many rules, though - generally speaking let your lead or PM (depending on environment) work on filtering what needs to be fixed now and what can be pushed off to the next release.</p> http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job/1822471#1822471 0 Answer by John Christensen for How to help a struggling newbie do a better job? John Christensen 2009-11-30T21:20:49Z 2009-11-30T21:20:49Z <p>How are you assigning the new developer tasks? Are you expecting him to just pull things out of your iteration and go to town on them? If so, it would probably be helpful to not do that for the time being. Pick out a small, somewhat interesting task to do - either as part of a task in your iteration, or a sub-task in your iteration. Provide him every piece of information he'll need to implement - including stubbing out the methods and (if you're using them) unit tests to ensure its working. Make sure everything is written up, and meet with him to go over what he needs to do.</p> <p>Be available on a daily basis to answer questions, if he has them. Don't press him immediately on deadlines for this thing - just keep track of the progress he's making on the task.</p> <p>Once done, review what he's done. Suggest changes that he needs to make.</p> <p>Once past this, slowly start to increase the complexity of the task you're giving. Perhaps the next task will tackle more than one layer, or will involve adding a more involved feature - your specific environment will dictate this, as will your experiences.</p> <p>There's definitely a learning curve here. Every person will tackle that curve differently, you're job is to (a) keep him on that curve and (b) to recommend upwards if he's going to be able to keep up at all.</p> http://stackoverflow.com/questions/11430/sql-2008-net-clr 3 SQL 2008 .NET CLR John Christensen 2008-08-14T18:08:00Z 2009-11-13T10:20:47Z <p>Does SQL 2008 ship with the .NET 3.5 CLR, so that stored procedures written in CLR can use 3.5 features?</p> http://stackoverflow.com/questions/893128/having-issues-with-the-ssrs-reports-site 0 Having issues with the SSRS Reports site John Christensen 2009-05-21T14:12:11Z 2009-11-07T21:00:02Z <p>So I'm working with SSRS (SQL Server 2005), which some of our applications use to generate downloads. The problem with it, though, is that the Reports website that is used to manage it seems to crash randomly. I haven't yet figured out a rhyme or reason to it - only that it will suddenly bust out with a 'Specified cast is not valid' exception and any further attempts to do anything will fail with 'The item '/' cannot be found (RsItemNotFound)'</p> <p>Is there a place I can start looking to help me debug this issue? Are there logs that might have more in-depth information than the useless error messages I'm getting?</p> http://stackoverflow.com/questions/939402/with-linq-to-sql-where-is-the-database-connection-information-stored/939425#939425 0 Answer by John Christensen for with linq to sql, where is the database connection information stored? John Christensen 2009-06-02T13:13:16Z 2009-06-02T13:13:16Z <p>As aleemb said, the database information is stored in the config files. Check the one in the project where you created your dbml map.</p> <p>That said - the DatabaseContext has a constructor that takes the connection string as a parameter. However, I'm not sure there's a good way to override that on a per query basis without creating a new DatabaseContext object. Which really could cause you issues in the future if you're creating entities from two different DatabaseContext objects.</p> http://stackoverflow.com/questions/936499/populate-dropdownlist-based-upon-other-dropdownlist-vb/936564#936564 0 Answer by John Christensen for Populate DropdownList based upon other DropDownList VB John Christensen 2009-06-01T20:20:15Z 2009-06-01T20:20:15Z <p>Your best option will be to capture the SelectedIndexChanged event on the first dropdownlist, examine what the current value of that dropdownlist is, and then use that to clear and then populate the items in the second dropdownlist. When you do so, remember to set the AutoPostBack property of the first DropDownList to "true".</p> http://stackoverflow.com/questions/926442/switching-all-aspx-files-from-local-encoding-to-utf-8/926516#926516 0 Answer by John Christensen for Switching all aspx files from local encoding to utf-8 John Christensen 2009-05-29T15:12:49Z 2009-06-01T03:03:46Z <p>If you are using Visual Studio 2005 or 2008, you can change the encoding a file is saved with using File -> Advanced Save Options. You'll need to potentially do that for each file (though you can probably get away with doing it only to those files in which you have internationalized content).</p> <p>That said - be sure that when you render HTML to the user's browser that you are setting the encoding type with a meta tag in the head. The specific tag will be:</p> <pre><code>&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/&gt; </code></pre> http://stackoverflow.com/questions/191066/how-do-you-manage-the-string-translation-process/930649#930649 1 Answer by John Christensen for How do you manage the String Translation Process? John Christensen 2009-05-30T21:18:59Z 2009-05-30T21:18:59Z <p>I'm not sure the platform you're internationalizing in. I've written an answer before on the best way to il8n an application. See <a href="http://stackoverflow.com/questions/59130/what-do-i-need-to-know-to-globalize-an-asp-net-application/59184#59184">http://stackoverflow.com/questions/59130/what-do-i-need-to-know-to-globalize-an-asp-net-application/59184#59184</a></p> <p>That said - managing the translations themselves is hard. The problem is that you'll be using the same piece of text across multiple pages. Your framework may not, however, support only having that piece of text in one file (resource files in asp.net, for instance, encourage you to have one resource file per language).</p> <p>The way that we found to work with things was to have a central database repository of translations. We created a small .net application to import translations from resource files into that database and to export translations from that database to resource files. There is, thus, an additional step in the build process to build the resource files.</p> <p>The other issue you're going to have is passing translations to your translation vendor and back. There are a couple ways for this - see if your translation vendor is willing to accept XML files and return properly formatted XML files. This is, really, one of the best ways, since it allows you to automate your import and export of translation files. Another alternative, if your vendor allows it, is to create a website to allow them to edit the translations.</p> <p>In the end, your answer for translations will be the same for any other process that requires repetition and manual work. Automate, automate, automate. Automate every single thing that you can. Copy and paste is <em>not</em> your friend in this scenario.</p> http://stackoverflow.com/questions/930603/which-old-computer-books-are-still-worth-reading/930621#930621 5 Answer by John Christensen for Which old computer books are still worth reading? John Christensen 2009-05-30T21:05:43Z 2009-05-30T21:10:57Z <p><a href="http://rads.stackoverflow.com/amzn/click/0201835959" rel="nofollow">Mythical Man Month</a> (34 or so years old) </p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a> (1994) </p> <p>Most strictly algorithms textbooks will hold their age, assuming they were written in a language you can understand</p> http://stackoverflow.com/questions/930579/teaching-a-junior-programmer-from-a-sys-admin-perspective/930601#930601 1 Answer by John Christensen for Teaching a junior programmer from a Sys Admin perspective? John Christensen 2009-05-30T20:58:02Z 2009-05-30T20:58:02Z <p>You're in a pretty tough situation, since you have no actual control over this developer. The first thing that I think you need to do is make sure that you aren't in an antagonistic relationship with him - because if you attempt to force changes upon him, you will likely lose. It sounds as if he has too many things backing him for you not too - he has the support of his boss and the ability to deliver what his boss wants.</p> <p>I think you're going the right path, honestly - you need to show him the benefits of the practices. Drop him blog entries that will help him do his job, and that may also contain tidbits of best practices. Source control is a great place to start, since I've always thought that that was a high value basic beginning to a good envioronment.</p> <p>The one area where you may need to push back, though, is in relation to database security. You likely don't want him to have full access rights to your database, for instance, since the risk is high that he may lose production data.</p> <p>In the end - this is going to take a long time, and will only work if he sees the benefits of improving. If he doesn't, or isn't motivated to do such, than you won't succeed.</p> http://stackoverflow.com/questions/930585/app-configs-and-mstest-project-null-reference-for-a-connection-string/930592#930592 0 Answer by John Christensen for app.configs and MSTest Project - null reference for a connection string John Christensen 2009-05-30T20:53:44Z 2009-05-30T20:53:44Z <p>I'm assuming mstests are, like nunit tests, embedded in a seperate assembly which gets loaded by the testing application? In that case, you may need to create some test set-up code which loads in the configuration file.</p> http://stackoverflow.com/questions/929926/visual-studio-net-dll-reference-problems/930021#930021 1 Answer by John Christensen for visual studio.net dll reference problems John Christensen 2009-05-30T15:59:39Z 2009-05-30T15:59:39Z <p>The simplest and most manual approach would be to have some sort of documentation somewhere which delineates your web application and indicates what its dependecies are, the version of them, and their location in source-safe. Add that as part of a build script.</p> <p>A harder and less manual approach would be to implement some form of build automation. I would suggest taking a good look at MSBuild (<a href="http://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx</a>), which uses XML files as a sort of scripting language. Download the Community Tasks package (<a href="http://msbuildtasks.tigris.org/" rel="nofollow">http://msbuildtasks.tigris.org/</a>) as well. With those two tools you should be able to generate a MSBuild file which gets your various solutions from sourcesafe and then builds them (note that you can call a MSBuild file from an MSBuild file. Also note that a Visual Studio Solution file is a MSBuild file - you can have your MSBuild script just run the build that your developers have been creating in Visual Studio). Once that's done you can then deploy the result wherever you want.</p> http://stackoverflow.com/questions/928926/sql-how-to-insert-to-a-column-whos-name-is-a-sql-keyword-key/928930#928930 4 Answer by John Christensen for SQL - How to INSERT to a column who's name is a sql keyword ("Key") John Christensen 2009-05-30T03:27:40Z 2009-05-30T03:27:40Z <p>You can surround column names like that with [ ] brackets. Therefore:</p> <pre><code>insert into mykeyvalues ([Key],[Value]) values ('FooKey', 'FooValue') </code></pre> http://stackoverflow.com/questions/927317/problem-with-stringbuilder-and-xml-literals/927489#927489 1 Answer by John Christensen for Problem with StringBuilder and XML Literals John Christensen 2009-05-29T18:35:20Z 2009-05-29T18:35:20Z <p>Because you're not forming a proper XML in your XML Literal statement (in your case you're not closing your tags), you can't use XML Literals here. You either need to have your XML literals be proper XML, or alternatively convert your code to use them as strings. Thus:</p> <pre><code>html.Append("&lt;html&gt;&lt;body&gt;") msgbox("nothing happens") </code></pre> http://stackoverflow.com/questions/927383/c-grid-datasource-polymorphism/927458#927458 0 Answer by John Christensen for C# grid DataSource polymorphism John Christensen 2009-05-29T18:27:21Z 2009-05-29T18:27:21Z <p>You'll need to use a Grid template column for this. Inside the template field you'll need to check what the type of the object is and then get the correct property - I recommend creating a method in your code-behind which takes care of this. Thus:</p> <pre><code>&lt;asp:TemplateField HeaderText="PolymorphicField"&gt; &lt;ItemTemplate&gt; &lt;%#GetUserSpecificProperty(Container.DataItem)%&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> <p>In your code-behind:</p> <pre><code>protected string GetUserSpecificProperty(IListItem obj) { if (obj is User) { return ((User) obj).UserSpecificField } else if (obj is Location) { return ((Location obj).LocationSpecificField; } else { return ""; } } </code></pre> http://stackoverflow.com/questions/888622/how-complex-should-smoke-tests-be 1 How complex should smoke tests be? John Christensen 2009-05-20T15:26:39Z 2009-05-20T15:52:06Z <p>So we've been running a daily build on our current project for a lot of months at this point. The smoke tests that goes along with that daily build isn't very complex, though - we run a few nUnit tests on our main class library (which, admittedly, doesn't offer great code coverage), and we make sure that things compile and build. The application in question is an ASP.NET site which consumes some business objects (which include LINQ-to-SQL).</p> <p>Are there more complex smoke tests that we should be running, particularly on the ASP.NET sites? How would we develop a smoke test for an ASP.NET site, for that matter?</p> http://stackoverflow.com/questions/888514/not-understanding-object-instantiation-in-c/888608#888608 0 Answer by John Christensen for Not Understanding Object Instantiation in C# John Christensen 2009-05-20T15:24:17Z 2009-05-20T15:24:17Z <p>As people have said before - your syntax isn't right here. ListOfBusiness() is a constructor and doesn't explicitly return an object. It instead operates on a new instance of ListOfBusiness and should take care of any creation necessary.</p> <p>That said - if your method to create the List is simple, there's absolutely no reason it should be part of a static method. You could even define an extension method on List that takes an empty list of that and populates it. This is called the Factory pattern, wherein a method or an instance of an object takes charge of creating new instances.</p> <p>Where you would want to think about extending ListOfBusiness into an instantiated class is if there are properties or state that needs to be tracked. IF the List changes each time it is called, or if you need a place to add new Businesses, the ListOfBusiness class might be useful for that.</p> http://stackoverflow.com/questions/888527/jquery-and-asp-net-control-issue/888574#888574 0 Answer by John Christensen for jQuery and ASP.NET Control issue John Christensen 2009-05-20T15:19:32Z 2009-05-20T15:19:32Z <p>If you're setting the ID of the rendered HTML control to the ID given to the ASP.NET control, you need to be aware of how ASP.NET handles control ID namespaces. Essentially, each control nested within a control needs to always guarantee a unique identifier. ASP.NET maintains this by taking the ID assigned to a control and prepending it with the ID of every control that contains the control. Thus, a control on a page will contain a string of ids going up to the form on the page itself.</p> <p>You do not want to have to re-construct this client-side. Instead, Control defines ClientID, which will return the ID of the control as rendered on the client. Embed this into your jQuery, or into a javascript variable that your jQuery can see if you are putting the jQuery in a separate script file) and you should be fine.</p> http://stackoverflow.com/questions/882755/how-to-develop-a-career-path-for-programmers-in-a-small-company/882814#882814 2 Answer by John Christensen for How to develop a career path for programmers in a small company? John Christensen 2009-05-19T13:37:44Z 2009-05-19T13:37:44Z <p>That's really tricky - we struggle with the exact same thing. I think the key here is to first determine what kind of career path your individual developers are interested in. Are some of them interested in helping out with sales? Are some of them interested in project management or product management? Are some of them capable of leading development teams? Do you have developers who really shine when developing new code and the architecture of your applications, or developers who really shine at interfacing with your users and finding and fixing their problems?</p> <p>More importantly - are the developers who want to go these path particularly talented therein?</p> <p>In the end, I think you're probably better served trying to work with developers and link up where they want to go career-wise with the value that they can deliver to your company. There are going to be problems going through this path - this entire discussion is, after all, intricately linked to issues of status and money (even if everyone insists its not).</p> <p>The simple alternative would be to just throw together some sort of job titles that establish some sort of fixed hierarchy - but I think you'd be poorly served by this. You don't need hierarchy, you need talent development.</p> http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys 5 Should a development environment disable foreign keys? John Christensen 2009-05-18T20:48:52Z 2009-05-19T12:47:46Z <p>So while we're using foreign keys in our current project, I've heard the argument before that enabling foreign key checking within a development environment simply puts roadblocks in front of developers - code should not rely on foreign keys being in place.</p> <p>I was wondering what people thought about this idea - when developing, do you keep foreign keys enabled in your development environment, or do you turn them off?</p> http://stackoverflow.com/questions/882488/gridview-server-events-ceased-to-fire/882528#882528 0 Answer by John Christensen for Gridview server events ceased to fire. John Christensen 2009-05-19T12:43:23Z 2009-05-19T12:43:23Z <p>At what point in the page execution timeline are you binding data to the datagrid? Its possible that if you're doing so before the lbOpen_Command event would be fired that you're wiping the event out.</p> http://stackoverflow.com/questions/878232/why-are-try-catch-in-main-bad/878267#878267 2 Answer by John Christensen for Why are try-catch in main() bad? John Christensen 2009-05-18T15:18:49Z 2009-05-18T15:18:49Z <p>I'm not sure I think its a bad practice. What you want to do is make sure that the exception and the current state of the program when it crashes ends up in the hands of a developer, preferably logged with date, time and the user who was working with it. Basically - you want to make sure that your team has all the information they need to debug the problem, regardless of whether or not the user goes to them about the crash. Remember that many users will not, in fact, contact support if they get a crash.</p> <p>The bad practice here would be catching the exception, showing a simple "Error" dialog box, and closing the application. In that case, the state of that exception is lost forever.</p> http://stackoverflow.com/questions/837764/new-to-svn-how-to-setup/837845#837845 0 Answer by John Christensen for New to SVN, How to Setup? John Christensen 2009-05-08T01:27:23Z 2009-05-08T01:27:23Z <p>No - your central server will maintain the repository. Your developers will get copies of the repository, make changes, and then commit them to your repository.</p> <p>You actually have quite a few things to figure out if you want to do a successful deployment of subversion.</p> <p>One really good article about setting up subversion on windows - <a href="http://www.codinghorror.com/blog/archives/001093.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001093.html</a></p> http://stackoverflow.com/questions/837590/to-linq-to-sql-or-not-that-is-the-question/837836#837836 0 Answer by John Christensen for To linq To SQL or not... that is the question? John Christensen 2009-05-08T01:22:35Z 2009-05-08T01:22:35Z <p>I would say that it depends. Everyone else so far has put things very well.</p> <p>Use LINQ-to-SQL if you don't mind the fact that your eventual object model is going to very closely mirror your database. There's not a lot you can do with or to a LINQ-to-SQL model if you find that you want to model things differently.</p> <p>Use EF if you want to potentially use the same framework to point to multiple types of data, or if you'd like to abstract your database model more than is possible in LINQ-to-SQL.</p> <p>I don't have any data on, say, performance differences between the two models, unfortunately.</p> <p>I wouldn't say the fact that MS isn't doing a lot of active development on LINQ-to-SQL should necessarily scare you away. Its a very good, very, very basic object mapping solution.</p> http://stackoverflow.com/questions/808111/creating-dynamic-controls-using-ajax-on-asp-net/808222#808222 1 Answer by John Christensen for creating dynamic controls using ajax on asp.net John Christensen 2009-04-30T17:51:55Z 2009-04-30T17:51:55Z <p>I think you're probably running into the fact that your page, upon each page post, is being completely recreated - essentially the page has to duplicate what controls were on your page before it can attempt to feed postback (and events) to them. I think what you probably need to do is add code to your page_load which will re-create the dynamically created controls, with the same ids as they had, and register the event handler.</p> http://stackoverflow.com/questions/808191/what-are-some-key-concepts-for-effective-development-teams/808209#808209 1 Answer by John Christensen for What are some key concepts for effective development teams? John Christensen 2009-04-30T17:49:26Z 2009-04-30T17:49:26Z <p>The number of people on your team is actually really important here. There are basic things that every team should implement (source code control, bug tracking, etc), but there are things that are different base don team size. Code reviews on a very small team, for instance, can be more informal.</p> <p>Moving to Agile is a good idea, unless you're particular development environment makes it a bad idea. Also, you'll not be able to do this without support from the people who are using your software.</p> <p>Consider doing things to ensure that communication between the team is easier and with less roadblocks - do all your members know each other pretty well? Can you work with each other? Do you understand each other's idiosyncracies? Learning to work as a team is much more important than any random process improvements you can make.</p> http://stackoverflow.com/questions/808168/is-this-supposed-to-work-this-way/808195#808195 0 Answer by John Christensen for Is this supposed to work this way? John Christensen 2009-04-30T17:46:12Z 2009-04-30T17:46:12Z <p>It looks to me like its not persisting class state between session method calls - probably a new object is being called each time. I'm actually not sure that you can rely on getting the same object instance each time you call the service. Joshua's answer is correct, but you'll also need to write code to persist your service's internal field into that session.</p> http://stackoverflow.com/questions/1829094/lambda-expression-add-to-collection-if-not-present/1829122#1829122 Comment by John Christensen on Lambda expression - add to collection if not present John Christensen 2009-12-01T21:46:02Z 2009-12-01T21:46:02Z And this is probably why you shouldn't do it my way, then. :P Teach me to answer a question without Visual Studio running. http://stackoverflow.com/questions/1829062/event-issue-with-asp-net-update-panel/1829104#1829104 Comment by John Christensen on Event issue with ASP.net Update Panel John Christensen 2009-12-01T21:44:00Z 2009-12-01T21:44:00Z Is the dropdownGroup_changed defined within your user control, or on your page? http://stackoverflow.com/questions/930603/which-old-computer-books-are-still-worth-reading/930621#930621 Comment by John Christensen on Which old computer books are still worth reading? John Christensen 2009-05-30T21:22:48Z 2009-05-30T21:22:48Z Yeah, I totally wasn't going to search ebay for a first edition copy of the book. :) http://stackoverflow.com/questions/927383/c-grid-datasource-polymorphism/927458#927458 Comment by John Christensen on C# grid DataSource polymorphism John Christensen 2009-05-29T20:28:40Z 2009-05-29T20:28:40Z What if you didn't bind it to a list of the objects, but instead bound it to an list of arrays. One element of the array (which you just don't bind to a field in the grid) could point back to the original object, which will give you the ability to always get back to the object that was bound to the row. http://stackoverflow.com/questions/927383/c-grid-datasource-polymorphism/927458#927458 Comment by John Christensen on C# grid DataSource polymorphism John Christensen 2009-05-29T18:45:53Z 2009-05-29T18:45:53Z Do TemplateFields exist in winforms? And if you're not going to have the view depend on specific types, why do you want to display the type specific field? An alternative to this might be to create a base class that for User and Location that with a method that outputs the specific field depending on the type of the instance. http://stackoverflow.com/questions/926457/why-does-my-image-download-with-perls-lwp-give-me-the-wrong-sized-file Comment by John Christensen on Why does my image download with Perl's LWP give me the wrong-sized file? John Christensen 2009-05-29T15:06:32Z 2009-05-29T15:06:32Z Is the only problem that the files are different sizes? How slight is slight? Is the image that is being sent to the user the same as the image on your server? http://stackoverflow.com/questions/926461/mysqlquery-doesnt-work-in-iis-alternative Comment by John Christensen on mysql_query doesn't work in IIS - alternative? John Christensen 2009-05-29T15:05:43Z 2009-05-29T15:05:43Z What is the error that you are getting? http://stackoverflow.com/questions/893128/having-issues-with-the-ssrs-reports-site Comment by John Christensen on Having issues with the SSRS Reports site John Christensen 2009-05-21T14:21:09Z 2009-05-21T14:21:09Z @John I've added the information on version to the question. I don't have details of the exception - what I've listed is literally all the browser tells me, which is why I'm interested in knowing if there are any logs I can look into. http://stackoverflow.com/questions/882352/deleting-hierarchical-data-in-sql-table/882373#882373 Comment by John Christensen on Deleting hierarchical data in SQL table. John Christensen 2009-05-19T13:05:18Z 2009-05-19T13:05:18Z I tend to agree with the first approach - we've got tables of hierarchical data that we're doing the same thing with. It helps with getting rid of children, and it also helps if you need to do path-based processing of the tree (such as having to quickly return all children of a parent for calculation). We originally tried using triggers to maintain this, but really found that the performance implications when adding large amounts of data were prohibitive. http://stackoverflow.com/questions/879763/should-a-development-environment-disable-foreign-keys Comment by John Christensen on Should a development environment disable foreign keys? John Christensen 2009-05-19T00:56:01Z 2009-05-19T00:56:01Z @Josef - A co-worker made the argument. http://stackoverflow.com/questions/808168/is-this-supposed-to-work-this-way/808195#808195 Comment by John Christensen on Is this supposed to work this way? John Christensen 2009-04-30T20:05:16Z 2009-04-30T20:05:16Z @John Yeah, that's what I figured. I was way, way to lazy to go check and thus wanted to hedge my bet a litte. :) http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/18810#18810 Comment by John Christensen on Are Foreign Keys really necessary in a database design? John Christensen 2009-04-20T13:17:03Z 2009-04-20T13:17:03Z And having been working with foreign keys on our current project for nearly six months, I totally agree with this comment.