User TT - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:24:01Z http://stackoverflow.com/feeds/user/29519 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1509479/what-would-be-a-cool-azure-app 0 What would be a cool azure app? TT 2009-10-02T13:21:36Z 2009-11-28T05:25:04Z <p>I was on MSDN live a couple of days ago and on one of the stands they had this competition: Write the coolest azure app within a couple of months and win a Windows 7 Ultimate. Great, I would like to try out some azure programming, but it got me thinking, how would a azure app stand out from normal web apps. Basically it is just the hardware that's different, but it forces you to write your app somewhat different.</p> <p>What are some examples of cool apps that clearly is easier and better suited as a cloud app than on a normal web app?</p> http://stackoverflow.com/questions/359122/dependency-injection-alternatives 11 dependency injection alternatives TT 2008-12-11T12:06:32Z 2009-11-24T21:18:32Z <p>I am looking at depency injection, I can see the benefits but I am having problems with the syntax it creates. I have this example</p> <pre><code>public class BusinessProducts { IDataContext _dx; BusinessProducts(IDataContext dx) { _dx = dx; } public List&lt;Product&gt; GetProducts() { return dx.GetProducts(); } } </code></pre> <p>The problem is that I don't want to write </p> <pre><code>BusinessProducts bp = new BusinessProducts(dataContextImplementation); </code></pre> <p>I would continue to write </p> <pre><code>BusinessProducts bp = new BusinessProducts(); </code></pre> <p>because I feel the first alternative just feels unatural. I dont want to know what the BusinessProduct "depends" on to get the products, also I feel it makes my code more unreadable. </p> <p>Is there any alternatives to this approach as I would like to keep my original syntax for creating objects but I would like to still be able to fake the dependencies when unit testing or is it this dependecy injection frameworks can do for me?</p> <p>I am coding in c# but alternatives from other languages is welcome</p> http://stackoverflow.com/questions/336415/asp-net-mvc-changed-a-lot-after-scottgus-blogging/336418#336418 3 Answer by TT for ASP.NET MVC changed a lot after ScottGu's blogging? TT 2008-12-03T07:35:59Z 2009-11-24T15:14:11Z <p>That code is based on asp.net mvc 1.0 Preview2. Version 1 has been released, and Version 2 is currently in beta. Check out the samples at <a href="http://asp.net/mvc" rel="nofollow">http://asp.net/mvc</a> to get updated samples</p> http://stackoverflow.com/questions/856889/c-programming-style-question-assignment-of-null-before-real-assignment 2 C# programming style question - Assignment of Null Before Real Assignment TT 2009-05-13T09:03:58Z 2009-11-16T19:43:15Z <p>Is there a good reason (advantage) for programming this style</p> <pre><code>XmlDocument doc = null; doc = xmlDocuments[3]; </code></pre> <p>vs</p> <pre><code>XmlDocument doc = xmlDocuments[3]; </code></pre> <p>I have seen it many times but to me it just seem overly verbose</p> http://stackoverflow.com/questions/1661435/mvc-web-fails-after-move/1661453#1661453 1 Answer by TT for MVC web fails after move TT 2009-11-02T13:52:48Z 2009-11-02T13:52:48Z <p>Url mapping works different on IIS 6.0 and IIS 7.0 (vista) so that could be the reason. Check this article to find more info <a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx</a></p> http://stackoverflow.com/questions/1500942/asp-net-ajax-4-0-client-templates-how-to-bind-a-select 3 asp.net ajax 4.0 client templates, how to bind a select? TT 2009-09-30T22:17:06Z 2009-10-09T20:27:02Z <p>I am trying to create a simple ajax grid that allows me to add and remove rows and also edit some of the columns and have others columns calculated directly based on the input in the others. I thought this would be a nice oppurtunity to play with asp.net ajax 4.0 and the client templates. It works pretty ok but I can't seem to find a way to bind my json data to a . How can I do this?</p> <p>A normal template looks like this</p> <pre><code>&lt;div id="authorsTemplate" style="visibility:hidden;display:none;"&gt; &lt;ul&gt; &lt;li&gt;First Name: {{ FirstName }}&lt;/li&gt; &lt;li&gt;Last Name: {{LastName}}&lt;/li&gt; &lt;li&gt;Url: &lt;a href="{{Url}}"&gt;{{Url}}&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>How would I use the data bind syntax with a dropdown </p> <pre><code>&lt;select id=""&gt; &lt;option value="1"&gt;1&lt;/option&gt; &lt;option value="2"&gt;2&lt;/option&gt; &lt;/select&gt; </code></pre> <p>EDIT: If the select tag had a value attribute the obvious solution would be. Edit2: The syntax below was actually the solution, Thx Roatin, I had no idea the select actually had a value attribute.</p> <pre><code>&lt;select id="" value="{binding nr}"&gt; &lt;option value="1"&gt;1&lt;/option&gt; &lt;option value="2"&gt;2&lt;/option&gt; &lt;/select&gt; </code></pre> <p>I could maybe use custom javascript to set the selected option but the point is a live binding to my json object the same way you bind to the value of a input tag</p> http://stackoverflow.com/questions/1544861/which-code-is-more-readable/1545053#1545053 -2 Answer by TT for Which code is more readable? TT 2009-10-09T17:17:30Z 2009-10-09T17:31:30Z <p>I would say code is readable if it is readable to a person with no knowledge of the actual programming language so therefore code like</p> <pre><code>if(Foo() == true and Bar() == true) then SomeProperty = true; else SomeProperty = false; </code></pre> <p>is much more readable than </p> <pre><code>SomeProperty = Foo() &amp;&amp; Bar(); </code></pre> <p>If the programmer taking over the code after you isn't familiar with the latter syntax it will cost him 10 times the time it takes you to write those extra few characters.</p> http://stackoverflow.com/questions/1532721/dont-know-enough-to-know-if-this-design-is-a-great-idea-or-an-incredibly-dumb-on/1533400#1533400 1 Answer by TT for Don’t know enough to know if this design is a great idea or an incredibly dumb one … TT 2009-10-07T18:36:16Z 2009-10-07T18:36:16Z <p>My take on a good design in a webapp, is that the Business Layer is where you Model your application in an object-oriented way and define your business rules. The business layer is the core of your application. In a typical web app you will many times just pass data through the business layer, but it still creates a good separation between data and ui and anyways it is code that is very easy to write and maintain so don't worry to much if this appears to be unnecessary code. </p> <p>To make your Business layer future proof and easy to test it should not have any knowledge of any of the external services it uses, it should just define a contract of what the services should deliver to your app, therefore you create interfaces for your services(IDataStorage, IMailService, ILogger...). This also allows you to easily swap the service implementations as they are much more a subject of change than your core business model.</p> <p>You can consider your DAL as just a service the allows you to store and retrieve your data from a persistant store, this can be an xml file, web service or more likely a database. In this way your DAL is a service that gets data from your persistant store and translates this into your business entities. </p> <p>When it comes to UI you should ideally create your business layer interface in a way that would allow for different UIs (Webforms, mvc, silverlight). If you create a good application it will live for many years and the UI will likely change many times and many times several UIs will be created. Your business layer should not care what you use as an UI layer, in this way you get a good separation between your layers.</p> http://stackoverflow.com/questions/1503247/web-config-and-app-config-confusion/1503285#1503285 4 Answer by TT for web.config and app.config confusion TT 2009-10-01T11:08:00Z 2009-10-01T11:08:00Z <p>Create a new sectionGroup in configSections called applicationSettings and paste your app.config configuration into web.config as shown below and then you can override your app.config settings.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" &gt; &lt;section name="Playground.ConfigurationOverride.DataAccess.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; &lt;applicationSettings&gt; &lt;Playground.ConfigurationOverride.DataAccess.Properties.Settings&gt; &lt;setting name="MySetting" serializeAs="String"&gt; &lt;value&gt;Setting in DataAccess&lt;/value&gt; &lt;/setting&gt; &lt;/Playground.ConfigurationOverride.DataAccess.Properties.Settings&gt; &lt;/applicationSettings&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/347741/build-does-not-catch-errors-in-the-view-in-asp-net-mvc 5 Build does not catch errors in the View in asp.net mvc TT 2008-12-07T16:23:08Z 2009-09-27T18:27:54Z <p>Why don't we get compile errors on inline code errors in asp.net mvc views f.eks</p> <pre><code>&lt;h1&gt;&lt;%= ViewData.Model.Title.Tostrig() %&gt;&lt;/h1&gt; </code></pre> <p>The code above will build just fine. Wrong spelling in webform controls will give you an error so I can't see why this isn't supported in asp.net mvc</p> <p>EDIT: Luckily there seem to be a fix included in the first RC for asp.net mvc <a href="http://weblogs.asp.net/scottgu/archive/2008/12/19/asp-net-mvc-design-gallery-and-upcoming-view-improvements-with-the-asp-net-mvc-release-candidate.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/12/19/asp-net-mvc-design-gallery-and-upcoming-view-improvements-with-the-asp-net-mvc-release-candidate.aspx</a></p> http://stackoverflow.com/questions/1333983/asp-net-mvc-views-and-strongly-typed-viewdata 2 asp.net mvc views and strongly typed viewdata TT 2009-08-26T11:13:42Z 2009-08-26T11:55:40Z <p>I prefer strongly typed viewdata for my asp.net mvc views for various reasons and I actually preferred the Views with codebehinds as they were in the earlier asp.net mvc previews because the codehind was a natural place to define the poco viewdata class as they generally have a 1:1 relationship with the actual view.</p> <p>Are there any way to have the codebehind in asp.net rtm views or is this not a good approach?</p> <p>EDIT: The only reason I would like to have codebehind is that I see the ViewData as a property of the view. If the view was a class then the ViewData was one of its properties and it feels un-natural to define this in a separate assembly.</p> http://stackoverflow.com/questions/728040/ddd-related-entities-in-master-detail-relationships 0 DDD, related entities in master detail relationships TT 2009-04-07T23:57:43Z 2009-08-26T03:15:01Z <p>As I understand it all DDD entities should have an ID. So my question is in a master detail relationship, say a Product and a ProductDetail, should the ProductDetail have any knowledge of the Product? Is it necesarry with a ProductID property in the ProductDetail class? In a database this is of course normal as it is the only way to link the two objects but is this best practice in DDD? I am using Linq2Sql as a ORM mapper so this comes as a given but I think this is not the right way. Anybody with some words of wisdom on this?</p> http://stackoverflow.com/questions/1328683/speed-up-linq-inserts/1329183#1329183 2 Answer by TT for Speed up LINQ inserts TT 2009-08-25T15:51:56Z 2009-08-25T15:51:56Z <p>Do you really need to check if the record exist before inserting it into the DB. I thought it looked strange as the data comes from a csv file.</p> <blockquote> <p>P.S. I've tried to use SqlBulkCopy, but I need to do some transformations on Offer before inserting it into the db, and I think that defeats the purpose of SqlBulkCopy.</p> </blockquote> <p>I don't think it defeat the purpose at all, why would it? Just fill a simple dataset with all the data from the csv and do a SqlBulkCopy. I did a similar thing with a collection of 30000+ rows and the import time went from minutes to seconds</p> http://stackoverflow.com/questions/1317144/mef-and-asp-net-problem 0 Mef and asp.net problem TT 2009-08-22T21:57:33Z 2009-08-24T15:30:26Z <p>I have an asp.net application using a model assembly (with a Model class) for business logic. This model assembly has a dependency on a MailService through an IMailService interface and I am trying to use MEF to fill the Models need for a MailService implementation. I am doing the MEF composition in the contructor of the Model class.</p> <p>The idea behind this is to create a MailService assembly I can reuse between my websites without the sites themselves need to know how the mail is sent. Maybe an IoC container would be a better choise but I just think the MEF approach is simpler to understand and I like the idea of composing my apps by combining parts. Also does the mef approach have any negative sides if you compare with a IoC container?</p> <pre><code>[Import] private IMailService _mailService; public Model() { Compose(); } private void Compose() { DirectoryCatalog cat = new DirectoryCatalog(Settings.Default.PluginsFolder); var container = new CompositionContainer(cat); container.ComposeParts(this); } </code></pre> <p>The code below is in another assembly and the interface in yet another assembly</p> <pre><code>[Export(typeof(IMailService))] public class MailService : IMailService { } </code></pre> <p>this works fine in my unit tests for the model assembly but when I am using the model assembly through my asp.net site it fails with the exception below. I also tried to set the trust to full in web.config but still no luck</p> <blockquote> <p>The composition remains unchanged. The changes were rejected because of the following error(s): The composition produced a single composition error. The root cause is provided below. Review the CompositionException.Errors property for more detailed information.</p> <p>1) No exports were found that match the constraint '((exportDefinition.ContractName = "ExtensionInterfaces.IMailService") &amp;&amp; (exportDefinition.Metadata.ContainsKey("ExportTypeIdentity") &amp;&amp; "ExtensionInterfaces.IMailService".Equals(exportDefinition.Metadata.get_Item("ExportTypeIdentity"))))'.</p> <p>Resulting in: Cannot set import Model.Model._mailService (ContractName="ExtensionInterfaces.IMailService")' on part Model.Model'. Element: Model.Model._mailService (ContractName="ExtensionInterfaces.IMailService") --> Model.Model</p> </blockquote> http://stackoverflow.com/questions/1317144/mef-and-asp-net-problem/1323061#1323061 0 Answer by TT for Mef and asp.net problem TT 2009-08-24T15:30:26Z 2009-08-24T15:30:26Z <p>I found the error, I had a assembly in the bin folder with the same name as the MailService assembly with my export. For some reason the catalog picked up the assembly in the bin folder instead of the assembly in the catalog I specified. Don't know why but it worked when I removed the old assembly from the bin folder at least.</p> http://stackoverflow.com/questions/336442/visual-studio-2010-wishlist -1 Visual studio 2010 Wishlist TT 2008-12-03T07:54:36Z 2009-08-13T15:51:58Z <p>I thought it was strange that this post did not already exist..</p> <p>So post your wishlist for VS next.</p> <p>Mine would be better refactoring and better intellisense a'la resharper. Also it would be nice to have built in tips on best practices. ex. warning if Dispose is not called on objects implementing IDisposable. </p> <p>EDIT: Ignore the last sentence. I just hadn't seen the Code Analysis tool before, after years of programming in VS!!!!</p> http://stackoverflow.com/questions/1242676/silverlight-or-asp-net/1246340#1246340 0 Answer by TT for Silverlight Or ASP.NET TT 2009-08-07T18:37:00Z 2009-08-07T18:37:00Z <p>I am tempted to say go with silverlight, its installbase is still low but its because there still isn't very many silverlight apps out there. It is still very easy to install(not as easy as flash though) so I dont see that as a big issue. Html was never ment to be used for applications so a silverlight app is far better suited for application programming. This is of course only my own opinion but I am sure the direction is more, bigger and higher quality applications running on web and not least apps running on mobiles (Silverlight is also coming to mobiles)</p> <p>I think we need a better programming model for web applications to keep productivity up when creating more complex web applications and silverlight is certainly a step up from html and javascript.</p> http://stackoverflow.com/questions/1190029/model-view-viewmodel-pattern-violation-of-dry 4 Model-View-ViewModel pattern violation of DRY? TT 2009-07-27T19:12:00Z 2009-07-29T16:14:09Z <p>I read this article today <a href="http://dotnetslackers.com/articles/silverlight/Silverlight-3-and-the-Data-Form-Control-part-I.aspx" rel="nofollow">http://dotnetslackers.com/articles/silverlight/Silverlight-3-and-the-Data-Form-Control-part-I.aspx</a> about the use of the MVVM pattern within a silverlight app where you have your domain entities and view spesific entities which basically is a subset of the real entity objects. Isn't this a clear violation of the DRY principle? and if so how can you deal with it in a nice way?</p> http://stackoverflow.com/questions/1193630/add-two-double-given-wrong-result/1193636#1193636 3 Answer by TT for add two double given wrong result TT 2009-07-28T12:01:00Z 2009-07-28T12:01:00Z <p>double is not completely accurate, try using decimal instead</p> <p>The advanteage of using double and float over decimal is performance</p> http://stackoverflow.com/questions/1193425/what-is-a-datetime-as-opposed-to-just-a-datetime-in-c/1193430#1193430 14 Answer by TT for What is a "DateTime?" as opposed to just a DateTime in C#? TT 2009-07-28T11:16:21Z 2009-07-28T11:20:19Z <p><code>DateTime?</code> can be null as opposed to <code>DateTime</code></p> http://stackoverflow.com/questions/1191057/what-are-the-drawbacks-with-building-business-apps-in-silverlight-contrary-to-htm 2 What are the drawbacks with building business apps in silverlight contrary to html TT 2009-07-27T22:42:21Z 2009-07-27T23:22:00Z <p>I have little experience with silverlight development still but with the potential of silverlight (office 2010 live) and similar adobe air apps are there any reasons for not building your business apps for web using silverlight. </p> <p>As I see it building business apps using html and javascript is only an ugly workaround for enabling apps running on web</p> http://stackoverflow.com/questions/1155725/whats-the-easiest-cheapest-solution-to-build-a-e-commerce-website/1155742#1155742 3 Answer by TT for What's the easiest, cheapest solution to build a E-Commerce website TT 2009-07-20T20:20:15Z 2009-07-20T20:20:15Z <p><a href="http://www.oscommerce.com/" rel="nofollow">OSCommerce</a> is a well proven, free ecommerce solution, which is easy to set up</p> http://stackoverflow.com/questions/1029034/linq-to-sql-mvc-issue-with-fk/1029209#1029209 0 Answer by TT for Linq to SQL MVC issue with FK TT 2009-06-22T20:21:06Z 2009-06-22T20:21:06Z <p>You could use the TempData bag and save the Username and CountryName there.</p> <p>in the controller: TempData["CountryName"] = countryName; </p> http://stackoverflow.com/questions/606000/what-is-the-current-best-validation-framework-for-asp-net-apps 0 What is the current best validation framework for asp.net apps? TT 2009-03-03T11:20:24Z 2009-06-22T13:50:03Z <p>To make sure its a DRY approach all validation logic should of course go in the business logic (model).</p> <ul> <li>How are validation messages presented to views, should be able to localize error messages</li> <li>Can you generate javascript from the validation framework. Compatibility with JQuery would be perfect</li> <li>Is the framework compatible with a DbC approach?</li> </ul> <p>Edit: I think this is the nicest one until now, Castle validator + live validation <a href="http://blog.codeville.net/2008/04/30/model-based-client-side-validation-for-aspnet-mvc/" rel="nofollow">http://blog.codeville.net/2008/04/30/model-based-client-side-validation-for-aspnet-mvc/</a></p> http://stackoverflow.com/questions/487046/whats-wrong-with-non-nullable-objects 2 Whats wrong with non nullable objects? TT 2009-01-28T09:49:38Z 2009-06-22T13:49:26Z <p>I have been looking at DbC lately and Spec# which seem to have support for non nullable objects. Unfortunately Spec# seem to have been abandoned.</p> <ol> <li>Spec# seemed to have lots of nice language features built in so why was it abandoned?</li> <li>Would there be any problem with letting all objects be non-nullable by default so you would have to write int?, string? and even MailMessage? if you really wanted a nullable object?</li> <li>I see kind of a Sql analogy here where you could check class properties as nullable or non nullable. Could you even put constraints on properties as you can with sql table columns?</li> </ol> <p>I don't see the problems with having features like this built in to the language. Could anybody enlighten me on this?</p> http://stackoverflow.com/questions/599000/business-entities-value-objects-framework-with-dbc-support 2 Business entities / value objects framework with DbC support TT 2009-03-01T00:41:20Z 2009-06-22T13:48:10Z <p>The thing I think I spend most time on when building my business models is the validation of business entities and making sure the entity objects and their relationships maintains good integrity. My dream for a good entity/value object framework would help me create reusable entities/value objects and easily create constraints and rules for relationships as you would in a db but since I feel this really is business rules they belong in the model and should be totally independent of the database.</p> <p>It should be easy to define that the Name property of a Person object should be required and that the Email property should be required and match a certain regex and that these rules should be easily reusable f.ex. in validating input in my web app.</p> <p>I have absolutely most experience with Linq to sql and even though it certainly is nice to work with it has limit by not supporting value objects and others. My question is would Entity framework or NHibernate be more suiting or are there other technologies that fit my needs better?</p> http://stackoverflow.com/questions/338029/sql-server-2008-table-valued-parameters-linq2sql 0 sql server 2008 table valued parameters linq2sql TT 2008-12-03T17:36:40Z 2009-06-19T19:26:58Z <p>Has anybody experimented with these. Is this supported?</p> http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/840376#840376 5 Answer by TT for What's Your Biggest Visual Studio 2008 Annoyance? TT 2009-05-08T15:25:09Z 2009-05-08T15:25:09Z <p>The time it takes to shutdown Visual studio. Even with small project it sometimes takes very long time, sometimes so long that I reside to force it with task manager. I can't figure out why, there is obviously a lot of disk activity but I can't figure out the reason to why it should save so much.</p> http://stackoverflow.com/questions/313127/net-and-multicores 2 .net and multicores TT 2008-11-23T23:43:12Z 2009-05-07T11:07:24Z <p>From the .net 4.0 previews I have read until now there has been lots of talk on how the next .net version will handle and use cpus with multiple cores. We will have additions like plinq that will help us make use of multiple cores. My question is why should I have to bother my mind with handling multiple cores when all I want is to make my application run faster. Why can't there be a kind of virtual cpu layer that exposes all cores as 1 core to my application? </p> <p>Edit: I would like to rephrase my question to avoid misunderstanding, Could there be made a software that would expose a virtual thread to my application that would be 10 times faster because underlaying it was using 10 cores. I do not want to have different threads doing things in paralell, I just want my one thread running faster. I guess this is not a big problem today but soon we'll have 80 core processors to play with and then I would feel a bit shorthanded only using 1 of them.</p> http://stackoverflow.com/questions/598832/in-ddd-what-are-the-actual-advantages-of-value-objects 5 In DDD, what are the actual advantages of value objects? TT 2009-02-28T22:48:07Z 2009-04-18T05:23:39Z <p>I have gotten so far that I understand entity objects have an ID while value object have not, but in the most common example you have the person entity that have a address value object attached to it. What is the big advantage of creating a separate address object instead of just keeping the address properties within the Person Entity?</p> http://stackoverflow.com/questions/411660/enterprise-library-unity-vs-other-ioc-containers/423168#423168 Comment by TT on Enterprise Library Unity vs Other IoC Containers TT 2009-11-27T11:47:09Z 2009-11-27T11:47:09Z You mentioned MEF as well, I use MEF to deliver my IRepository implementation objects and find it works just fine. What is your thoughts on MEF? http://stackoverflow.com/questions/7864/why-all-the-active-record-hate Comment by TT on Why all the Active Record hate? TT 2009-11-27T09:48:25Z 2009-11-27T09:48:25Z I guess in general a lot of hate and dislike against design patterns are connected to wrong use. People tend to overuse and use them in wrong context and end up with a more complex solution than the original http://stackoverflow.com/questions/1544861/which-code-is-more-readable/1545053#1545053 Comment by TT on Which code is more readable? TT 2009-10-09T20:04:14Z 2009-10-09T20:04:14Z That is your opinion... http://stackoverflow.com/questions/1500942/asp-net-ajax-4-0-client-templates-how-to-bind-a-select/1541761#1541761 Comment by TT on asp.net ajax 4.0 client templates, how to bind a select? TT 2009-10-09T07:40:38Z 2009-10-09T07:40:38Z Thx, just what i was looking for, i'l lgive it a try later http://stackoverflow.com/questions/1500942/asp-net-ajax-4-0-client-templates-how-to-bind-a-select/1535328#1535328 Comment by TT on asp.net ajax 4.0 client templates, how to bind a select? TT 2009-10-08T17:59:56Z 2009-10-08T17:59:56Z I updated my question to clarify http://stackoverflow.com/questions/1500942/asp-net-ajax-4-0-client-templates-how-to-bind-a-select/1535328#1535328 Comment by TT on asp.net ajax 4.0 client templates, how to bind a select? TT 2009-10-08T16:59:35Z 2009-10-08T16:59:35Z Thx, but its not quite what I was looking for. I do not want to populate the dropdown, it is already populated. I want to be able to use the client template binding syntax to get the value from my json object and set the selected element. It could be that I am looking at the problem from the wrong angle though. It would have been easy if the &lt;select&gt; tag had a value attribute http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871738#871738 Comment by TT on Why do I need an IoC container as opposed to straightforward DI code? TT 2009-10-07T17:30:52Z 2009-10-07T17:30:52Z The new MEF framework allows just this for .NET and I must say the code is cleaner and easier to understand, makes it a lot easier to understand the DI concept. http://stackoverflow.com/questions/1532721/dont-know-enough-to-know-if-this-design-is-a-great-idea-or-an-incredibly-dumb-on/1532829#1532829 Comment by TT on Don’t know enough to know if this design is a great idea or an incredibly dumb one … TT 2009-10-07T17:06:37Z 2009-10-07T17:06:37Z +1 for the lesson, -1 for the attitude http://stackoverflow.com/questions/1509479/what-would-be-a-cool-azure-app/1509594#1509594 Comment by TT on What would be a cool azure app? TT 2009-10-02T14:24:14Z 2009-10-02T14:24:14Z Definitely an option but I guess it would be pretty expensive though http://stackoverflow.com/questions/1333983/asp-net-mvc-views-and-strongly-typed-viewdata/1333994#1333994 Comment by TT on asp.net mvc views and strongly typed viewdata TT 2009-08-26T11:59:17Z 2009-08-26T11:59:17Z I guess I just got hung up on the physical placement of the ViewData classes, but having them in the Models folder makes sense. Thx http://stackoverflow.com/questions/1333983/asp-net-mvc-views-and-strongly-typed-viewdata/1333994#1333994 Comment by TT on asp.net mvc views and strongly typed viewdata TT 2009-08-26T11:21:04Z 2009-08-26T11:21:04Z But do you use strongly typed viewdata, and in case where are you defining those classes? http://stackoverflow.com/questions/1317144/mef-and-asp-net-problem/1320608#1320608 Comment by TT on Mef and asp.net problem TT 2009-08-24T07:19:56Z 2009-08-24T07:19:56Z Also the unit test calling that spesific code works fine, so its a problem that occurs when using a asp.net site as a client http://stackoverflow.com/questions/1317144/mef-and-asp-net-problem/1320608#1320608 Comment by TT on Mef and asp.net problem TT 2009-08-24T07:12:53Z 2009-08-24T07:12:53Z I suspected that as well, I gave Everyone full access to that folder, set the website to full trust. I even moved the plugins folder inside the website but still no luck. http://stackoverflow.com/questions/1260377/what-are-the-advantages-of-letting-ie-being-so-closely-integrated-with-the-os Comment by TT on What are the advantages of letting IE being so closely integrated with the OS TT 2009-08-11T13:58:24Z 2009-08-11T13:58:24Z I guess the level of integration can be discussed, a better question would maybe be why IE is so hard to install and upgrade compared to Firefox, Chrome.... http://stackoverflow.com/questions/1260377/what-are-the-advantages-of-letting-ie-being-so-closely-integrated-with-the-os Comment by TT on What are the advantages of letting IE being so closely integrated with the OS TT 2009-08-11T13:55:11Z 2009-08-11T13:55:11Z <a href="http://discuss.joelonsoftware.com/default.asp?joel.3.740738.14" rel="nofollow">discuss.joelonsoftware.com/default.asp?joel.3.740&hellip;</a>