User TT - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T22:24:01Zhttp://stackoverflow.com/feeds/user/29519http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1509479/what-would-be-a-cool-azure-app0What would be a cool azure app?TT2009-10-02T13:21:36Z2009-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-alternatives11dependency injection alternativesTT2008-12-11T12:06:32Z2009-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<Product> 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#3364183Answer by TT for ASP.NET MVC changed a lot after ScottGu's blogging?TT2008-12-03T07:35:59Z2009-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-assignment2C# programming style question - Assignment of Null Before Real AssignmentTT2009-05-13T09:03:58Z2009-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#16614531Answer by TT for MVC web fails after moveTT2009-11-02T13:52:48Z2009-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-select3asp.net ajax 4.0 client templates, how to bind a select?TT2009-09-30T22:17:06Z2009-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><div id="authorsTemplate" style="visibility:hidden;display:none;">
<ul>
<li>First Name: {{ FirstName }}</li>
<li>Last Name: {{LastName}}</li>
<li>Url: <a href="{{Url}}">{{Url}}</a></li>
</ul>
</div>
</code></pre>
<p>How would I use the data bind syntax with a dropdown </p>
<pre><code><select id="">
<option value="1">1</option>
<option value="2">2</option>
</select>
</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><select id="" value="{binding nr}">
<option value="1">1</option>
<option value="2">2</option>
</select>
</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-2Answer by TT for Which code is more readable?TT2009-10-09T17:17:30Z2009-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() && 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#15334001Answer by TT for Don’t know enough to know if this design is a great idea or an incredibly dumb one …TT2009-10-07T18:36:16Z2009-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#15032854Answer by TT for web.config and app.config confusionTT2009-10-01T11:08:00Z2009-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><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings"
type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Playground.ConfigurationOverride.DataAccess.Properties.Settings"
type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
requirePermission="false" />
</sectionGroup>
</configSections>
<applicationSettings>
<Playground.ConfigurationOverride.DataAccess.Properties.Settings>
<setting name="MySetting" serializeAs="String">
<value>Setting in DataAccess</value>
</setting>
</Playground.ConfigurationOverride.DataAccess.Properties.Settings>
</applicationSettings>
</configuration>
</code></pre>
http://stackoverflow.com/questions/347741/build-does-not-catch-errors-in-the-view-in-asp-net-mvc5Build does not catch errors in the View in asp.net mvcTT2008-12-07T16:23:08Z2009-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><h1><%= ViewData.Model.Title.Tostrig() %></h1>
</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-viewdata2asp.net mvc views and strongly typed viewdataTT2009-08-26T11:13:42Z2009-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-relationships0DDD, related entities in master detail relationshipsTT2009-04-07T23:57:43Z2009-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#13291832Answer by TT for Speed up LINQ insertsTT2009-08-25T15:51:56Z2009-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-problem0Mef and asp.net problemTT2009-08-22T21:57:33Z2009-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") &&
(exportDefinition.Metadata.ContainsKey("ExportTypeIdentity")
&&
"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#13230610Answer by TT for Mef and asp.net problemTT2009-08-24T15:30:26Z2009-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-1Visual studio 2010 WishlistTT2008-12-03T07:54:36Z2009-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#12463400Answer by TT for Silverlight Or ASP.NETTT2009-08-07T18:37:00Z2009-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-dry4Model-View-ViewModel pattern violation of DRY?TT2009-07-27T19:12:00Z2009-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#11936363Answer by TT for add two double given wrong resultTT2009-07-28T12:01:00Z2009-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#119343014Answer by TT for What is a "DateTime?" as opposed to just a DateTime in C#?TT2009-07-28T11:16:21Z2009-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-htm2What are the drawbacks with building business apps in silverlight contrary to htmlTT2009-07-27T22:42:21Z2009-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#11557423Answer by TT for What's the easiest, cheapest solution to build a E-Commerce websiteTT2009-07-20T20:20:15Z2009-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#10292090Answer by TT for Linq to SQL MVC issue with FKTT2009-06-22T20:21:06Z2009-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-apps0What is the current best validation framework for asp.net apps?TT2009-03-03T11:20:24Z2009-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-objects2Whats wrong with non nullable objects?TT2009-01-28T09:49:38Z2009-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-support2Business entities / value objects framework with DbC supportTT2009-03-01T00:41:20Z2009-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-linq2sql0sql server 2008 table valued parameters linq2sqlTT2008-12-03T17:36:40Z2009-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#8403765Answer by TT for What's Your Biggest Visual Studio 2008 Annoyance?TT2009-05-08T15:25:09Z2009-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-multicores2.net and multicoresTT2008-11-23T23:43:12Z2009-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-objects5In DDD, what are the actual advantages of value objects?TT2009-02-28T22:48:07Z2009-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#423168Comment by TT on Enterprise Library Unity vs Other IoC ContainersTT2009-11-27T11:47:09Z2009-11-27T11:47:09ZYou 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-hateComment by TT on Why all the Active Record hate?TT2009-11-27T09:48:25Z2009-11-27T09:48:25ZI 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 originalhttp://stackoverflow.com/questions/1544861/which-code-is-more-readable/1545053#1545053Comment by TT on Which code is more readable?TT2009-10-09T20:04:14Z2009-10-09T20:04:14ZThat is your opinion...http://stackoverflow.com/questions/1500942/asp-net-ajax-4-0-client-templates-how-to-bind-a-select/1541761#1541761Comment by TT on asp.net ajax 4.0 client templates, how to bind a select?TT2009-10-09T07:40:38Z2009-10-09T07:40:38ZThx, just what i was looking for, i'l lgive it a try laterhttp://stackoverflow.com/questions/1500942/asp-net-ajax-4-0-client-templates-how-to-bind-a-select/1535328#1535328Comment by TT on asp.net ajax 4.0 client templates, how to bind a select?TT2009-10-08T17:59:56Z2009-10-08T17:59:56ZI updated my question to clarifyhttp://stackoverflow.com/questions/1500942/asp-net-ajax-4-0-client-templates-how-to-bind-a-select/1535328#1535328Comment by TT on asp.net ajax 4.0 client templates, how to bind a select?TT2009-10-08T16:59:35Z2009-10-08T16:59:35ZThx, 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 <select> tag had a value attributehttp://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871738#871738Comment by TT on Why do I need an IoC container as opposed to straightforward DI code?TT2009-10-07T17:30:52Z2009-10-07T17:30:52ZThe 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#1532829Comment by TT on Don’t know enough to know if this design is a great idea or an incredibly dumb one …TT2009-10-07T17:06:37Z2009-10-07T17:06:37Z+1 for the lesson, -1 for the attitudehttp://stackoverflow.com/questions/1509479/what-would-be-a-cool-azure-app/1509594#1509594Comment by TT on What would be a cool azure app?TT2009-10-02T14:24:14Z2009-10-02T14:24:14ZDefinitely an option but I guess it would be pretty expensive thoughhttp://stackoverflow.com/questions/1333983/asp-net-mvc-views-and-strongly-typed-viewdata/1333994#1333994Comment by TT on asp.net mvc views and strongly typed viewdataTT2009-08-26T11:59:17Z2009-08-26T11:59:17ZI guess I just got hung up on the physical placement of the ViewData classes, but having them in the Models folder makes sense. Thxhttp://stackoverflow.com/questions/1333983/asp-net-mvc-views-and-strongly-typed-viewdata/1333994#1333994Comment by TT on asp.net mvc views and strongly typed viewdataTT2009-08-26T11:21:04Z2009-08-26T11:21:04ZBut 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#1320608Comment by TT on Mef and asp.net problemTT2009-08-24T07:19:56Z2009-08-24T07:19:56ZAlso the unit test calling that spesific code works fine, so its a problem that occurs when using a asp.net site as a clienthttp://stackoverflow.com/questions/1317144/mef-and-asp-net-problem/1320608#1320608Comment by TT on Mef and asp.net problemTT2009-08-24T07:12:53Z2009-08-24T07:12:53ZI 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-osComment by TT on What are the advantages of letting IE being so closely integrated with the OSTT2009-08-11T13:58:24Z2009-08-11T13:58:24ZI 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-osComment by TT on What are the advantages of letting IE being so closely integrated with the OSTT2009-08-11T13:55:11Z2009-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…</a>