User Kilhoffer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:02:20Z http://stackoverflow.com/feeds/user/5469 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61437/what-are-some-viable-alternatives-to-biztalk-server 11 What are some viable alternatives to BizTalk Server? Kilhoffer 2008-09-14T16:18:52Z 2009-12-14T19:55:19Z <p>In evaluating different systems integration strategies, I've come across some words of encouragement, but also some words of frustration over BizTalk Server. </p> <p>What are some pros and cons to using BizTalk Server (both from a developer standpoint and a business user), and should companies also consider open source alternatives? What viable alternatives are out there?</p> <p>EDIT: <a href="http://www.jitterbit.com/" rel="nofollow">Jitterbit</a> seems like an interesting choice. Open Source and seems to be nicely engineered. Anyone on here have any experience working with it?</p> http://stackoverflow.com/questions/1875821/can-teamcity-commit-the-output-of-one-build-to-another-svn-repository-thereby-st 4 Can TeamCity commit the output of one build to another svn repository, thereby starting another build? Kilhoffer 2009-12-09T18:25:16Z 2009-12-09T20:53:25Z <p>So far, I've only used TeamCity as a continuous build server. No true integration. Now, I have the need to copy the output from one shared project to two other dependent projects, and kick off their automated builds in turn. That is, ProjectA and ProjectB both depend on ProjectC. All three are currently being built by TC when any commit occurs in their respective repositories. What we desire, is for the output of ProjectC to be copied and committed to ProjectA and ProjectB. Such a commit would in turn start the build process of both dependent projects. This seems like it would be a common scenario when talking about continuous integration. Is it not?</p> <p>To clarify, we're using TeamCity v.4.5.5 (build 9103), SVN, and nAnt as our build runner.</p> <p>EDIT: I mispoke when I said something about committing to another repository. They actually all three reside in the same physical repository, just at different levels in the hierarchy.</p> http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764511#1764511 6 Answer by Kilhoffer for What are the biggest potential time wasters in development? Kilhoffer 2009-11-19T16:17:12Z 2009-11-19T17:29:18Z <p>Pointless meetings I get drawn into when I cannot contribute any value and the meeting brings me no value. </p> <p>Wading through red tape to get something as simple as more memory in a machine or a piece of software installed. The larger the corp, the more steps involved and the more potential points of failure, leading to tons of time wasted by waiting.</p> <p>Also having to go back correct other people's poor design decisions. I, of course, never make such mistakes! ;-)</p> http://stackoverflow.com/questions/1758768/is-there-a-workaround-to-ie7s-user-agent-being-defaulted-after-installing-net-f/1758810#1758810 2 Answer by Kilhoffer for Is there a workaround to IE7's user agent being defaulted after installing .Net Framework 3.5 SP1? Kilhoffer 2009-11-18T20:25:37Z 2009-11-18T20:25:37Z <p>You're probably referring to the <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=362923" rel="nofollow">known bug</a> in .Net 3.5 SP1 where the user agent is incorrectly being reported when the length is exceeded. According to the MS bug report and other tidbits I dug up when looking into this, there are the following workarounds. Some may or may not be suitable for your situation.</p> <ul> <li>Remove some versions of the .Net framework on the machine(s) in question. Only keep around major versions to reduce the user agent reporting.</li> <li>Edit the registry at the following location: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\User Agent\Post Platform </li> <li>Using above reg key, remove duplicate entries </li> <li>Using above reg key, remove entries that are no longer needed or irrelevant.</li> </ul> <p>This doesnt help public facing websites, however. I'm hoping MS fixes this bug in the very near future, as it's preventing availability of certain SL sites to users who don't know what's going on or how to resolve it.</p> http://stackoverflow.com/questions/1756556/does-asp-net-use-reflection-to-parse-and-build-objects-based-on-server-control-ta/1756562#1756562 1 Answer by Kilhoffer for Does asp.net use reflection to parse and build objects based on server control tags? Kilhoffer 2009-11-18T14:55:06Z 2009-11-18T15:01:00Z <p>You may be confused as to what reflection really is. It's not a tool for parsing and creating objects, but rather analyzing meta data on CLR types. Here's the <a href="http://msdn.microsoft.com/en-us/library/f7ykdhsy%28VS.71%29.aspx" rel="nofollow">official overview of reflection</a>.</p> <p>Now, once ASP.Net creates instances of objects represented by markup (xml), it uses reflection to fill in property values on the newly created objects and does cache the metadata. It does all of this during the page initialization phase of the <a href="http://msdn.microsoft.com/en-us/library/ms178472.aspx" rel="nofollow">page lifecycle</a>.</p> http://stackoverflow.com/questions/1756392/is-there-a-performance-hit-in-using-the-var-keyword-in-c/1756400#1756400 6 Answer by Kilhoffer for Is there a performance hit in using the 'var' keyword in C#? Kilhoffer 2009-11-18T14:32:24Z 2009-11-18T14:32:24Z <p>Someone asked <a href="http://stackoverflow.com/questions/356846/c-var-vs-specific-type-performance">that question</a> on here already. In short, no, the IL code generated is the same. Therefore, no perf hit. If you ever wonder how one way of doing something differs from another, just write a sample and then use <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> to analyze the differences.</p> http://stackoverflow.com/questions/1756023/how-to-create-a-thread-safe-pool-of-objects/1756087#1756087 1 Answer by Kilhoffer for How to create a thread-safe pool of objects? Kilhoffer 2009-11-18T13:46:12Z 2009-11-18T13:46:12Z <p>I've had good luck with <a href="http://www.codeproject.com/KB/recipes/ObjectPooling.aspx" rel="nofollow">this one</a> on CodeProject. I only had to make a minor tweak to how <code>WeakReference</code>s are stored, but other than that, it's running in production with no problems at all.</p> http://stackoverflow.com/questions/1753743/case-conventions-in-wpf-using-mvvm/1755944#1755944 1 Answer by Kilhoffer for Case Conventions in wpf using MVVM Kilhoffer 2009-11-18T13:25:04Z 2009-11-18T13:25:04Z <p>There are many sources for this, but here's the offical MSDN <a href="http://msdn.microsoft.com/en-us/library/czefa0ke%28VS.71%29.aspx" rel="nofollow">Design Guidelines for Class Library Developers</a>. As for MVVM specific conventions, just follow C# design guidelines in your ViewModels and you should be good.</p> http://stackoverflow.com/questions/1313991/force-validation-on-bound-controls-from-xaml 0 Force validation on bound controls from XAML? Kilhoffer 2009-08-21T20:11:40Z 2009-11-17T21:03:23Z <p>There is a <a href="http://stackoverflow.com/questions/483419/force-validation-on-bound-controls-in-wpf">very similar question</a> already posted. In fact, the result of the answer in that post is exactly what I'm after, but I have no codebehind to place that code in. All of our logic is encapsulated in a ViewModel. Since the ViewModel is not supposed to have direct references to specific visual elements, this code cannot exist there either. Is there a way to perform this same thing in XAML somehow, or have I finally ran into a reason to be forced to create codebehind files?</p> http://stackoverflow.com/questions/1718988/mvvm-wpf-question/1751718#1751718 1 Answer by Kilhoffer for MVVM WPF Question Kilhoffer 2009-11-17T20:58:18Z 2009-11-17T20:58:18Z <p>I would implement this using triggers only. No need to complicate things by using MVVM when you don't need to. </p> http://stackoverflow.com/questions/134148/do-assemblies-placed-in-the-gac-gain-full-trust/134164#134164 3 Answer by Kilhoffer for Do assemblies placed in the GAC gain full trust? Kilhoffer 2008-09-25T15:54:12Z 2009-11-17T20:41:59Z <p>You've been hearing conflicting views because it's a topic of great confusion, even among senior engineers. In short, simply placing an assembly in the GAC does implicitly give it full trust, but this can be overriden via security policy.</p> <p>EDIT1: Let me add that a common thought is if you don't trust an assembly fully, why are you placing it in the GAC?</p> <p>EDIT2: I had a link in here to a blog post from Michelle Bustamante, but as you can see in the comment below, it's no longer available so I removed it from this answer.</p> http://stackoverflow.com/questions/205931/what-is-lock-escalation 6 What is lock escalation? Kilhoffer 2008-10-15T18:50:01Z 2009-11-15T21:25:39Z <p>I was asked this question at an interview and had no answer. Can anyone here explain?</p> http://stackoverflow.com/questions/129389/how-do-you-do-a-deep-copy-an-object-in-net-c-specifically/129395#129395 31 Answer by Kilhoffer for How do you do a deep copy an object in .Net (C# specifically)? Kilhoffer 2008-09-24T19:40:42Z 2009-11-13T01:12:09Z <p>I've seen a few different approaches to this, but I use a generic utility method as such:</p> <pre><code>public static T DeepClone&lt;T&gt;(T obj) { using (var ms = new MemoryStream()) { var formatter = new BinaryFormatter(); formatter.Serialize(ms, obj); ms.Position = 0; return (T) formatter.Deserialize(ms); } } </code></pre> <p>Note that your class MUST be marked as [Serializable] in order for this to work.</p> http://stackoverflow.com/questions/56628/how-do-you-clear-the-transaction-log-in-a-sql-server-2005-database 14 How do you clear the transaction log in a SQL Server 2005 database? Kilhoffer 2008-09-11T14:08:11Z 2009-10-07T10:21:45Z <p>I'm not a SQL expert, and I'm reminded of the fact every time I need to do something beyond the basics. I have a test database that is not large in size, but the transaction log definitely is. How do I clear out the transaction log?</p> http://stackoverflow.com/questions/1119834/what-is-the-proper-way-to-move-a-database-from-one-drive-to-another-in-sql-server 0 What is the proper way to move a database from one drive to another in SQL Server 2005? Kilhoffer 2009-07-13T14:37:32Z 2009-07-13T15:08:11Z <p>I'm not looking to relocate the database to another server entirely, but just move the data file(s) and log file to another drive with more space. I've seen conflicting directions on how to do this, so I'm looking for the recommended proper way of doing it.</p> http://stackoverflow.com/questions/155087/how-can-you-inherit-from-a-sealed-class-using-reflection-in-net 4 How can you inherit from a sealed class using reflection in .Net? Kilhoffer 2008-09-30T21:03:57Z 2009-06-02T18:42:30Z <p>Before you start firing at me, I'm NOT looking to do this, but someone in <a href="http://stackoverflow.com/questions/154698/how-can-i-keep-a-class-from-being-inherited-in-c">another post</a> said it was possible. How is it possible? I've never heard of inheriting from anything using reflection. But I've seen some strange things...</p> http://stackoverflow.com/questions/149784/how-do-you-copy-a-record-in-a-sql-table-but-swap-out-the-unique-id-of-the-new-row 1 How do you copy a record in a SQL table but swap out the unique id of the new row? Kilhoffer 2008-09-29T17:35:04Z 2009-05-21T19:49:10Z <p><a href="http://stackoverflow.com/questions/57168/how-to-copy-a-row-from-one-sql-server-table-to-another">This question</a> comes close to what I need, but my scenario is slightly different. The source table and destination table are the same and the primary key is a uniqueidentifier (guid). When I try this:</p> <pre><code>insert into MyTable select * from MyTable where uniqueId = @Id; </code></pre> <p>I obviously get a primary key constraint violation, since I'm attempting to copy over the primary key. Actually, I don't want to copy over the primary key at all. Rather, I want to create a new one. Additionally, I would like to selectively copy over certain fields, and leave the others null. To make matters more complex, I need to take the primary key of the original record, and insert it into another field in the copy (PreviousId field).</p> <p>I'm sure there is an easy solution to this, I just don't know enough TSQL to know what it is.</p> http://stackoverflow.com/questions/209990/is-it-better-to-know-multiple-development-platforms-or-just-know-one-inside-and 8 Is it better to know multiple development platforms, or just know one inside and out? Kilhoffer 2008-10-16T19:48:08Z 2009-05-21T00:33:10Z <p>Do you feel it's a good career move to learn multiple platforms, or do you think it's better to choose one, specialize in it, and learn it deeper than you could two platforms?</p> http://stackoverflow.com/questions/856006/asp-net-mvc-vs-webforms-vs-http-handlers-ashx-which-is-the-most-lightweigh/856051#856051 1 Answer by Kilhoffer for ASP.NET MVC vs. Webforms vs. HTTP Handlers (.ashx) - which is the most lightweight? Kilhoffer 2009-05-13T04:22:58Z 2009-05-13T04:22:58Z <p>WebForms are going to be the heaviest in most cases. ASP.Net MVC is quite lightweight and surprisingly fast compared to WebForms. </p> <p>Building an application using HttpHandlers to serve pages may be fast when serving static content, but if you plan to use some sort of templating to serve dynamic data, you're going to cause yourself a lot of undue work. As for performance, it's hard to say with this option because your templating could be nasty or possibly not.</p> http://stackoverflow.com/questions/380124/what-extra-steps-do-you-take-when-creating-msi-installers-for-vista 6 What extra steps do you take when creating MSI installers for Vista? Kilhoffer 2008-12-19T04:44:29Z 2009-05-08T16:44:08Z <p>I have a very simple Setup project that copies three dlls into the GAC. That's all it has to do. It works fine in XP, but on a Vista machine, it errors out stating that it cannot write to the file and to check permissions. I'm sure this has to do with some impersonation nonsense in Vista, but I'm not sure how to address it.</p> <p>Has anyone else encountered this, and how did you overcome it if so?</p> http://stackoverflow.com/questions/153220/are-there-any-good-free-net-network-libraries-ftp-sftp-ssh-etc 15 Are there any good free .Net network libraries? (FTP, SFTP, SSH, etc.) Kilhoffer 2008-09-30T14:17:03Z 2009-05-06T09:32:28Z <p>I'm a bit surprised I haven't found a good open source library for performing common network tasks. There are a few very good commercial libraries, but they're too expensive to use on an open source project. </p> <p>Anyone know of any?</p> http://stackoverflow.com/questions/54579/wcf-configuration-without-a-config-file 4 WCF Configuration without a config file Kilhoffer 2008-09-10T16:25:29Z 2009-04-21T22:24:13Z <p>Does anyone know of a good example of how to expose a WCF service programatically without the use of a configuration file? I know the service object model is much richer now with WCF, so I know it's possible. I just have not seen an example of how to do so. Conversely, I would like to see how consuming without a configuration file is done as well.</p> <p>Before anyone asks, I have a very specific need to do this without configuration files. I would normally not recommend such a practice, but as I said, there is a very specific need in this case.</p> http://stackoverflow.com/questions/218659/for-those-of-you-using-subsonic-what-kind-of-performance-are-you-seeing-in-large 3 For those of you using SubSonic, what kind of performance are you seeing in large applications? Kilhoffer 2008-10-20T14:33:43Z 2009-04-08T17:20:00Z <p>I've used SubSonic in a few POC projects, but nothing large. It's so easy to use, and it's possible to abstract away the fact that it uses the active record pattern (can move it toward a more domain driven approach).</p> <p>Has anyone on here used SubSonic on larger applications, and what kind of performance did you witness? Was your experience worth it overall?</p> http://stackoverflow.com/questions/271254/what-is-the-easiest-approach-to-exporting-a-sharepoint-list-in-xml-format 3 What is the easiest approach to exporting a Sharepoint list in xml format? Kilhoffer 2008-11-07T04:32:45Z 2009-03-09T20:41:57Z <p>Pretty self explanatory. I just need to export lists easily to xml format. Are there any tools that accomplish this?</p> http://stackoverflow.com/questions/278971/how-can-commenting-be-added-to-news-articles-in-an-existing-sharepoint-2007-news 2 How can commenting be added to news articles in an existing Sharepoint 2007 news site? Kilhoffer 2008-11-10T19:58:04Z 2009-03-03T16:43:51Z <p>A client is asking to incorporate commenting on their news articles. They're using the Sharepoint news site template for their news publishing, etc. They want a simple commenting system, much like what is available on most blog engines, only they want it at the bottom of each news article.</p> <p>I just thought I would ask around about an out of the box solution before I go quoting a custom dev solution. Thanks in advance!</p> http://stackoverflow.com/questions/388976/playing-flash-movies-in-lightbox/607063#607063 0 Answer by Kilhoffer for playing flash movies in lightbox Kilhoffer 2009-03-03T16:18:55Z 2009-03-03T16:18:55Z <p><a href="http://www.no-margin-for-errors.com/projects/prettyPhoto/" rel="nofollow">PrettyPhoto</a> is a great jQuery plug-in that supports flash and image galleries both. Note that at the time I wrote this, version 2.2.5 does not support flash, but a download for vesion 2.2.2 is still available, which does support flash.</p> http://stackoverflow.com/questions/59319/in-a-scrum-project-should-testing-and-peer-reviews-be-worked-into-each-sprint-as 7 In a Scrum project, should testing and peer reviews be worked into each sprint as individual tasks? Kilhoffer 2008-09-12T15:33:31Z 2009-02-18T16:30:30Z <p>This seems to be a point of contention where I work. Some complain about the lack of verification structure in Scrum projects, while Scrum purists say it's not what Scrum is about. Both sides bring up great points, but I would like to see what people outside my circle say about the subject. What are your thoughts? Why?</p> http://stackoverflow.com/questions/546424/in-sharepoint-what-is-the-actual-name-of-the-page-layout-used-for-the-article-p 4 In Sharepoint, what is the actual name of the page layout used for the "Article page with with body only" layout option? Kilhoffer 2009-02-13T15:46:20Z 2009-02-13T15:51:56Z <p>I need to swap out the out-of-the-box rich text editor with the Telerik editor for all article page layouts. Unfortunately, I only see three article layouts in Sharepoint Designer. When creating a new article page from within Sharepoint, however, it shows 4 article layouts. The one I see missing in Designer is the one with no option for article images. </p> <p>Does anyone know where I can find the layout labeled as "Article page with body only"?</p> http://stackoverflow.com/questions/499432/how-can-i-get-a-vector-type-in-c/499438#499438 6 Answer by Kilhoffer for How can I get a vector type in C#? Kilhoffer 2009-01-31T19:57:51Z 2009-01-31T19:57:51Z <p>I used one in a POC that I found on <a href="http://www.codeproject.com/KB/recipes/VectorType.aspx" rel="nofollow">CodeProject</a>. It's not ideal, but it worked for our situation. At the time, however, it did not have a method to reflect a Vector3 about a given normal, but that may have changed since then.</p> <p>If you don't mind using DirectX (some stay away from it for whatever reason), then there is a <a href="http://msdn.microsoft.com/en-us/library/microsoft.windowsmobile.directx.vector3.aspx" rel="nofollow">Vector3</a> type in that library as well.</p> http://stackoverflow.com/questions/129277/how-do-you-determine-whether-or-not-a-give-type-system-type-inherits-from-a-spe 3 How do you determine whether or not a give Type (System.Type) inherits from a specific base class (in .Net)? Kilhoffer 2008-09-24T19:21:39Z 2009-01-30T17:26:30Z <p>This is likely going to be an easy answer and I'm just missing something, but here goes...If I have a Type, (that is, an actual System.Type...not an instance) how do I tell if it inherits from another specific base type?</p> http://stackoverflow.com/questions/1875821/can-teamcity-commit-the-output-of-one-build-to-another-svn-repository-thereby-st/1876808#1876808 Comment by Kilhoffer on Can TeamCity commit the output of one build to another svn repository, thereby starting another build? Kilhoffer 2009-12-09T21:27:00Z 2009-12-09T21:27:00Z Great tips. It looks as though TeamCity does not do this directly, so scripting it is where I'm at now. You also made me stop and think about whether or not I want this to occur after each commit on ProjectC. I think probably during the nightly build is sufficient. The idea of the automated changelog is an interesting one as well. Haven't ever thought of doing that. Not sure if I trust the log messages enough, though. http://stackoverflow.com/questions/1875821/can-teamcity-commit-the-output-of-one-build-to-another-svn-repository-thereby-st/1875917#1875917 Comment by Kilhoffer on Can TeamCity commit the output of one build to another svn repository, thereby starting another build? Kilhoffer 2009-12-09T20:42:05Z 2009-12-09T20:42:05Z In this scenario, ProjectC becomes a third party to ProjectA and ProjectB. Therefore, it's output should exist in the 'lib' folders for both projects, alongside other third party assemblies. So, yes, having the output committed is definitely what I want here. Using names like ProjectA, ProjectB, and ProjectC clouds the example, but essentially, each of these projects are owned by different parts of the business and are not edited by each other. So it's desireable in this case for ProjectC to be provided to consumers in assembly format. http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764511#1764511 Comment by Kilhoffer on What are the biggest potential time wasters in development? Kilhoffer 2009-11-19T16:20:14Z 2009-11-19T16:20:14Z That would be awesome. It would probably offend the client I'm currently working for, however. Still, it would really help me! http://stackoverflow.com/questions/1758205/can-i-access-my-controller-action-verb-from-my-derived-authorizeattribute/1758250#1758250 Comment by Kilhoffer on Can I access my controller/action/verb from my derived AuthorizeAttribute? Kilhoffer 2009-11-18T19:04:51Z 2009-11-18T19:04:51Z I've read your post on customizing authorization. Informative. Looks like your suggestion should do the trick. http://stackoverflow.com/questions/134148/do-assemblies-placed-in-the-gac-gain-full-trust/134164#134164 Comment by Kilhoffer on Do assemblies placed in the GAC gain full trust? Kilhoffer 2009-11-17T20:42:34Z 2009-11-17T20:42:34Z @cori: Thanks. I've since removed the broken link. http://stackoverflow.com/questions/483419/force-validation-on-bound-controls-in-wpf/496871#496871 Comment by Kilhoffer on Force validation on bound controls in WPF Kilhoffer 2009-08-21T20:07:58Z 2009-08-21T20:07:58Z This works and achieves what I was looking for, but I have no codebehind. Form logic is encapsulated in a ModelView. Since the ModelView is not supposed to have references to specific screen elements, how can this be done and still have no codebehind? Is there a way in XAML to force binding? http://stackoverflow.com/questions/1119834/what-is-the-proper-way-to-move-a-database-from-one-drive-to-another-in-sql-server/1119873#1119873 Comment by Kilhoffer on What is the proper way to move a database from one drive to another in SQL Server 2005? Kilhoffer 2009-07-13T15:19:52Z 2009-07-13T15:19:52Z Very nice. I found another MS article, but it was pre-2005. This link had all the information I needed and it worked. Thank you! http://stackoverflow.com/questions/513952/c-specifying-generic-collection-type-param-at-runtime/513967#513967 Comment by Kilhoffer on C# specifying generic collection type param at runtime Kilhoffer 2009-05-12T14:09:08Z 2009-05-12T14:09:08Z This isnt a big deal or anything, but you can replace your empty type array being passed into GetConstructor with Type.EmptyTypes. Just a little cleaner, that's all. http://stackoverflow.com/questions/129389/how-do-you-do-a-deep-copy-an-object-in-net-c-specifically/215496#215496 Comment by Kilhoffer on How do you do a deep copy an object in .Net (C# specifically)? Kilhoffer 2009-03-20T03:40:06Z 2009-03-20T03:40:06Z I've corrected my code. I had a variable mispelled. It's good now. http://stackoverflow.com/questions/129389/how-do-you-do-a-deep-copy-an-object-in-net-c-specifically/129395#129395 Comment by Kilhoffer on How do you do a deep copy an object in .Net (C# specifically)? Kilhoffer 2009-03-20T03:38:41Z 2009-03-20T03:38:41Z No, that's a typo. I'm correcting it now... http://stackoverflow.com/questions/493580/how-do-you-convert-a-url-to-a-virtual-path-in-asp-net-without-manual-string-parsi/493604#493604 Comment by Kilhoffer on How do you convert a url to a virtual path in asp.net without manual string parsing? Kilhoffer 2009-01-30T16:46:38Z 2009-01-30T16:46:38Z Awesome, thanks, Daniel. I hadnt even looked at VirtualPathUtility. Works exactly the way I needed it to! http://stackoverflow.com/questions/380124/what-extra-steps-do-you-take-when-creating-msi-installers-for-vista/380345#380345 Comment by Kilhoffer on What extra steps do you take when creating MSI installers for Vista? Kilhoffer 2009-01-30T14:55:30Z 2009-01-30T14:55:30Z Thanks for the tip on NSIS. I'm going to move away from doing installer packages from VS. http://stackoverflow.com/questions/271254/what-is-the-easiest-approach-to-exporting-a-sharepoint-list-in-xml-format/271632#271632 Comment by Kilhoffer on What is the easiest approach to exporting a Sharepoint list in xml format? Kilhoffer 2009-01-30T14:53:54Z 2009-01-30T14:53:54Z Well, it's tagged MOSS. That can only mean SP 2007 http://stackoverflow.com/questions/442885/asp-net-json-function-to-convert-gridview-and-repeater-in-a-json-string Comment by Kilhoffer on ASP.NET & JSON: Function to convert GridView and Repeater in a JSON string. Kilhoffer 2009-01-14T14:18:06Z 2009-01-14T14:18:06Z Please edit your question to make it more explanatory. http://stackoverflow.com/questions/442885/asp-net-json-function-to-convert-gridview-and-repeater-in-a-json-string Comment by Kilhoffer on ASP.NET & JSON: Function to convert GridView and Repeater in a JSON string. Kilhoffer 2009-01-14T14:17:36Z 2009-01-14T14:17:36Z Your question isnt making much sense to me. You want to convert a server control to json, or the data that the controls are bound to?