User SaaS Developer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T01:58:05Zhttp://stackoverflow.com/feeds/user/7215http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1909114/impersonation-asp-net-mvc-controller-action-vs-web-forms3Impersonation: ASP.Net MVC Controller Action vs. Web FormsSaaS Developer2009-12-15T17:40:08Z2009-12-17T11:54:51Z
<p>Is there a difference with impersonation between an ASP.Net MVC controller actions vs. an ASP.Net Web Form? Using the exact same code within the same web project, I am able to successfully impersonate the Windows user when connecting to SQL Server from a Web Form but not from the Controller Action. Here is the code sample I am testing from each:</p>
<pre><code>string sqlQuery = @"SELECT Top 10 FullName FROM Customer";
// Connect to the database server. You must use Windows Authentication;
SqlConnection connection = new SqlConnection("Data Source=ServerName;Initial Catalog=DBName;Integrated Security=SSPI");
// Create a DataTable to store the results of the query.
DataTable table = new DataTable();
// Create and configure the SQL Data Adapter that will fill the DataTable.
SqlDataAdapter adapter = new SqlDataAdapter();
adapter.SelectCommand = new SqlCommand(sqlQuery, connection);
// Execute the query by filling the DataTable.
adapter.Fill(table);
</code></pre>
<p>I have checked the HttpContext user on both the controller and the web form and they look identical. However, when running a SQL trace the controller action is always running as Network Service, while the web form is running as the user. Any clarification on why these two are behaving different and how to impersonate within the controller action would be appreciated.</p>
http://stackoverflow.com/questions/1902084/sql-execute-as-login-command-and-linq-to-sql0SQL 'Execute As' Login Command and Linq to SQLSaaS Developer2009-12-14T16:54:30Z2009-12-16T15:16:28Z
<p>I am trying to execute a sql query as another login using the 'Execute As' command. I am using Linq to SQL, so I've generated a Data Context class and I am using the ExecuteQuery method to run the 'Execute As' SQL command. I then call a Linq to SQL command that is successful. However, every subsequent query fails with the following error:</p>
<blockquote>
<p>A severe error occurred on the current command. The results, if any, should be discarded.</p>
</blockquote>
<p>Here is the code snippet that I have tried:</p>
<pre><code>SummaryDataContext summary = new SummaryDataContext();
summary.ExecuteQuery<CustomPostResult>(@"Execute as Login='Titan\Administrator'");
var test = summary.Customers.First();
var test2 = summary.Products.ToList();
</code></pre>
<p>No matter what query I run on the second query I receive the error message from above. Any help would be appreciated. </p>
http://stackoverflow.com/questions/1905238/linq-to-sql-in-asp-net-mvc-runs-as-network-service-when-using-impersonation0Linq to SQL in ASP.Net MVC Runs as Network Service when using ImpersonationSaaS Developer2009-12-15T04:53:22Z2009-12-15T16:58:58Z
<p>I have an ASP.Net MVC controller action that instantiates a DataContext object and I am currently passing the connection string directly into the constructor. I am using Impersonation and I have verified the current user in the controller action is the current Windows Auth. user of the web app, however when running a SQL Trace the query always runs as Network Service. The data context object is referenced in another project from the web application but I am passing the connection string directly into the constructor so this should not be an issue. Here is what is currently in the controller action:</p>
<pre><code> // verified the user is the current Windows Auth. user of the web app
var user = this.User;
var connectionString = "Data Source=serverName;Initial Catalog=dbName;Integrated Security=true";
var context = new CustomDataContext(connectionString);
var test = context.Customers.Select(i => i.fullname).ToList();
</code></pre>
<p>Everything is getting to the database fine except for the fact that the query always runs as Network Service instead of the current user. Any ideas on why this is the case and how to resolve?</p>
http://stackoverflow.com/questions/104022/localize-strings-in-javascript4Localize Strings in JavascriptSaaS Developer2008-09-19T17:46:28Z2009-12-09T23:11:47Z
<p>I'm currently using .resx files to manage my server side resources for .Net. The application that I am dealing with also allows developers to plugin javascript into various event handlers for client side validation, etc.. What is the best way for me to localize my javascript messages and strings? Ideally, I would like to store the strings in the .resx files to keep them with the rest of the localized resources. I'm open to suggestions.</p>
http://stackoverflow.com/questions/1753478/jquery-ui-dialog-post-to-asp-net-mvc-controller-action0Jquery UI Dialog Post to ASP.Net MVC Controller ActionSaaS Developer2009-11-18T03:37:40Z2009-11-18T06:47:32Z
<p>I have an MVC view that contains a JQuery UI dialog that can be opened and populated with data. </p>
<pre><code><div id="dialog">
.... Table of phone numbers
</div>
<div id="personData">
... Person model data
</div>
</code></pre>
<p>I am attempting to pass the data from the JQuery UI dialog along with the rest of the MVC View data to a controller action. </p>
<pre><code>public ActionResult Save(Person person, List<PhoneNumber> phoneNumbers)
{
}
</code></pre>
<p><em>In this example the Person type is not part of the dialog and is posted fine. The phone numbers is in the div of the JQuery UI dialog and does not post.</em></p>
<p>The elements in the dialog are defined in the View and can be seen in the DOM but for some reason something is preventing the data to post along with the rest of the View data. If I remove the .dialog() declaration from the the "dialog" div (now the div is visible on the form), the data (phoneNumbers) will post. </p>
<p>So my question is how do you post the JQuery UI dialog data along with the View data from the form to a controller action? (I know how to post the UI dialog data using a button within the dialog, but I need to post it alongside my main View because of the state issues around this data).</p>
http://stackoverflow.com/questions/287014/asp-net-mvc-loading-in-progress-indicator4ASP.Net MVC Loading In Progress IndicatorSaaS Developer2008-11-13T14:13:03Z2009-11-08T13:36:57Z
<p>I have an MVC Controller that runs through a process, sets some View Data, and then returns the results of this data back to the user in a View. The process time is dependent on the amount of data that is being processed. I need a good way to display an animated .gif within the View while the process is running, letting the user know that something is going on. </p>
<p>I've looked at various AJAX methods and partial views but still cannot find a good way to accomplish this. What I really wished I could do was have an ActionFilter that would return a View or Partial View during the OnActionExecuting event that displays this animated .gif, then once the Controller completed processsing and returned the ViewData, the view or partial view with the actual View Data could be displayed. </p>
<p>It also seems like jQuery would be able to provide a nice asynchronous way to call the controller action in the background and then render the View. Any help would be appreciated.</p>
http://stackoverflow.com/questions/188141/c-list-orderby-alphabetical-order15C# List<> OrderBy Alphabetical OrderSaaS Developer2008-10-09T16:48:03Z2009-10-23T14:29:04Z
<p>I'm using C# on Framework 3.5. I'm looking to quickly sort a Generic List<>. For the sake of this example lets say I have a List of a Person type with a property of lastname. How would I sort this List using a lambda expression?</p>
<pre><code>List<Person> people = PopulateList();
people.OrderBy(???? => ?????)
</code></pre>
http://stackoverflow.com/questions/109305/asp-net-gridview-size-formatting0ASP.Net GridView Size FormattingSaaS Developer2008-09-20T20:40:40Z2009-05-23T11:04:21Z
<p>I have an ASP.Net GridView control that I need to remain a fixed size whether there are 0 records or <em>n</em> records in the grid. The header and the footer should remain in the same position regardless of the amount of data in the grid. Obviously, I need to implement paging for larger datasets but how would I achieve this fixed sized GridView? Ideally I would like this to be a reusable control.</p>
http://stackoverflow.com/questions/659694/asp-net-mvc-routing-and-the-prerequesthandler0ASP.Net MVC Routing and the PreRequestHandlerSaaS Developer2009-03-18T19:12:42Z2009-03-18T21:04:36Z
<p>I'm trying to instantiate a service and authenticate the current user within the Application_PreRequestHandlerExecute() method and then dispose of this service in the* Application_PostRequestHandlerExecute() method of the global.asax.cs class. One of the items I need for this process is the orgname which is appended at the beginning of my url route. I have mapped a route that looks like this "{orgName}/{controller}/{action}/{id}"</p>
<p>So my question is, within an ASP.Net MVC application is it possible to access any of the routing information (or somehow access the "orgname" in my instance) within the Application_PreRequestHandlerExecute() event? If this is not possible is there some other way to hook into an MvcHandler and do something similar (maybe I should build a custom filter?)</p>
http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/98616#986168Answer by SaaS Developer for Favorite Visual Studio keyboard shortcutsSaaS Developer2008-09-19T01:24:32Z2009-03-11T01:24:54Z<p>Solution Explorer: <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>L</kbd></p>
http://stackoverflow.com/questions/493673/c-3-0-need-to-return-duplicates-from-a-list9C# 3.0: Need to return duplicates from a List<>SaaS Developer2009-01-29T22:06:51Z2009-01-30T15:02:42Z
<p>I have a List<> of objects in C# and I need a way to return those objects that are considered duplicates within the list. I do not need the Distinct resultset, I need a list of those items that I will be deleting from my repository.</p>
<p>For the sake of this example, lets say I have a list of "Car" types and I need to know which of these cars are the same color as another in the list. Here are the cars in the list and their color property:</p>
<p>Car1.Color = Red;</p>
<p>Car2.Color = Blue;</p>
<p>Car3.Color = Green;</p>
<p>Car4.Color = Red;</p>
<p>Car5.Color = Red;</p>
<p>For this example I need the result (IEnumerable<>, List<>, or whatever) to contain Car4 and Car5 because I want to delete these from my repository or db so that I only have one car per color in my repository. Any help would be appreciated.</p>
http://stackoverflow.com/questions/363655/c-list-groupby-2-values5C# List<> GroupBy 2 ValuesSaaS Developer2008-12-12T18:10:25Z2008-12-14T23:40:20Z
<p>I'm using C# on Framework 3.5. I'm looking to quickly group a Generic List<> by two properties. For the sake of this example lets say I have a List of an Order type with properties of CustomerId, ProductId, and ProductCount. How would I get the sum of ProductCounts grouped by CustomerId and ProductId using a lambda expression?</p>
http://stackoverflow.com/questions/214077/c-3-0-anonymous-types-naming1C# 3.0 Anonymous Types: NamingSaaS Developer2008-10-17T22:44:30Z2008-11-03T14:27:51Z
<p>I was wondering if there is some way to name or rename a property on an Anonymous type to include a space in the property name. For example:</p>
<pre><code>var resultSet = from customer in customerList
select new
{
FirstName = customer.firstName;
};
</code></pre>
<p>In this example I would like FirstName to be "First Name". The reason for this question, is I have a user control that exposes a public DataSource property that I bind to different anonymous type. It is working perfectly right now, except for the one little shortcoming of the column names being a little less than user friendly (FirstName instead of First Name).</p>
http://stackoverflow.com/questions/252437/looking-for-an-seo-book/252462#2524620Answer by SaaS Developer for Looking for an SEO book...SaaS Developer2008-10-31T02:36:21Z2008-10-31T02:36:21Z<p>I've got a book that isn't just focused on SEO but it does cover it fairly well. There is also a lot of other useful information that may be of interest to you:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0596101082" rel="nofollow">Google Advertising Tools</a></p>
http://stackoverflow.com/questions/242177/what-is-aspect-oriented-programming/242205#2422050Answer by SaaS Developer for What is aspect-oriented programming?SaaS Developer2008-10-28T03:52:12Z2008-10-28T03:52:12Z<p>AOP is a way to better modularize your application for functionality that spans across multiple boundaries. AOP is another way to encapsulate these features and follow Single Responsiblity by moving these cross-cutting concerns (logging, error handling, etc.) out of the main components of your application. When used appropriately AOP can lead to higher levels of maintainability and extensibility in your application over time.</p>
http://stackoverflow.com/questions/231903/how-much-to-log-within-an-application-how-much-is-too-much/231923#2319233Answer by SaaS Developer for How much to log within an application??? How much is too much...SaaS Developer2008-10-23T23:20:28Z2008-10-23T23:20:28Z<p>You are right that this does make the code more difficult to read and maintain. One recommendation is to consider looking into an AOP (Aspect oriented Programming) tool to separate your logging logic from your application logic. Castle Windsor and Spring are two that come to mind within the .Net community that you may want to research.</p>
http://stackoverflow.com/questions/231891/does-asp-net-mvc-run-on-top-of-asp-net-2-0/231899#2318993Answer by SaaS Developer for Does ASP.Net MVC run on top of ASP.NET 2.0?SaaS Developer2008-10-23T23:09:48Z2008-10-23T23:09:48Z<p>It's not supported but you can read up on how to do it here...</p>
<p><a href="http://www.hanselman.com/blog/DeployingASPNETMVCOnASPNET20.aspx" rel="nofollow">http://www.hanselman.com/blog/DeployingASPNETMVCOnASPNET20.aspx</a></p>
http://stackoverflow.com/questions/230702/memory-efficient-xslt-processor/230722#230722-2Answer by SaaS Developer for Memory-efficient XSLT ProcessorSaaS Developer2008-10-23T17:51:42Z2008-10-23T17:51:42Z<p>Take a look at <a href="http://www.marrowsoft.co.uk/Products.htm" rel="nofollow">Xselerator</a></p>
http://stackoverflow.com/questions/230109/questions-on-differences-from-asp-net-2-0-to-asp-net-3-5-mvc/230184#2301843Answer by SaaS Developer for Questions on differences from ASP.NET 2.0 to ASP.NET 3.5 MVCSaaS Developer2008-10-23T15:28:24Z2008-10-23T15:28:24Z<p>To answer some of your other questions:</p>
<p><em>Is visual studios team suite worth the time/money?</em></p>
<p>How much do you have? If you are a large company with a big budget and development staff and you are focused on Microsoft technologies than I would say yes. If you answered no to any of these questions, I would go the Open Source Route (Svn or GIT, Cruise Control or Team City, MsBuild, etc.)</p>
<p><em>We are moving from regular 2.0 webforms with no testing to TDD MVC and I need to know the lowdowns as in I've never made such a jump before (not that its a huge jump but I'm a nooby programmer that has just graduated college).</em></p>
<p>This is a good time for you to learn MVC then since you don't have a deep investment in Web Forms knowledge and MVC is a much better model for someone like you to master. TDD is not something that you will learn over night but stick with it and you will become a much better programmer because of it.</p>
http://stackoverflow.com/questions/229762/what-single-software-development-tool-do-you-think-holds-the-most-value/229785#2297857Answer by SaaS Developer for What single software development tool do you think holds the most value?SaaS Developer2008-10-23T13:52:16Z2008-10-23T13:52:16Z<p>ReSharper is my #1 choice as well. This tool has so many time savers that I just can't code without it.</p>
<p>I would say #2 would be Reflector. This has given me a greater understanding of third party type systems including those in the .Net Framework.</p>
http://stackoverflow.com/questions/228394/automating-code-review-and-refactoring/228418#2284183Answer by SaaS Developer for Automating code review and refactoringSaaS Developer2008-10-23T03:15:21Z2008-10-23T03:21:54Z<p>Since you mentioned ReSharper, I would recommend looking into the sharing code styles feature that is available in one of the latest versions. This way you can have your team following the same standards and coding styles and will let them know as they code. You can read more here: <a href="http://codebetter.com/blogs/kyle.baley/archive/2008/10/13/sharing-code-styles-in-resharper.aspx" rel="nofollow">Sharing Code Styles.</a></p>
<p>I have also been on a project where we ran FxCop from Visual Studio as a post build process. You can set warnings and errors the way you want in FxCop and even fail the build if you would like.</p>
<p>Microsoft's <a href="http://code.msdn.microsoft.com/sourceanalysis" rel="nofollow">StyleCop</a> is another free project on MSDN Code gallery that may be worth checking out: </p>
<p>Team System has some nice features in it, but you said cheap so I'm not even going there :)</p>
<p>The most important thing I learned about any of these processes, is the dev team needs to understand why this is important and everybody needs to buy into it in order for it to be successful. One rogue developer or contractor can make the whole thing a mess and then the rest of the team may think why even bother.</p>
http://stackoverflow.com/questions/228024/what-major-applications-does-microsoft-sell-which-use-the-net-framework/228033#2280334Answer by SaaS Developer for What major applications does Microsoft sell which use the .NET framework?SaaS Developer2008-10-23T00:29:37Z2008-10-23T00:29:37Z<p><a href="http://www.microsoft.com/dynamics/crm/default.mspx" rel="nofollow">Microsoft Dynamics CRM</a> was one of the (if not the) first application Microsoft built on .Net.</p>
http://stackoverflow.com/questions/228013/fluffy-cloud-configurations-for-net/228021#2280210Answer by SaaS Developer for Fluffy Cloud Configurations For .NETSaaS Developer2008-10-23T00:25:19Z2008-10-23T00:25:19Z<p>Check out <a href="http://www.microsoft.com/sql/dataservices/default.mspx" rel="nofollow">Sql Server Data Services</a> and make sure to tune in to PDC 2008 next week. </p>
http://stackoverflow.com/questions/222572/sorting-a-dropdownlist-c-asp-net/227944#2279443Answer by SaaS Developer for Sorting a DropDownList? - C#, ASP.NETSaaS Developer2008-10-22T23:45:52Z2008-10-22T23:45:52Z<p>Assuming you are running the latest version of the .Net Framework this will work: </p>
<pre><code>List<string> items = GetItemsFromSomewhere();
items.Sort((x, y) => string.Compare(x, y));
DropDownListId.DataSource = items;
DropDownListId.DataBind();
</code></pre>
http://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html/227706#2277067Answer by SaaS Developer for ASP.NET MVC controller actions that return JSON or partial htmlSaaS Developer2008-10-22T22:08:09Z2008-10-22T22:08:09Z<p>Another nice way to deal with JSON data is using the JQuery getJSON function. You can call the </p>
<pre><code>public ActionResult SomeActionMethod(int id)
{
return Json(new {foo="bar", baz="Blech"});
}
</code></pre>
<p>method from the jquery getJSON method by simply...</p>
<pre><code> $.getJSON("../SomeActionMethod", {
id: someId
},
function(data) {
alert(data.foo);
alert(data.baz);}
</code></pre>
http://stackoverflow.com/questions/227621/can-mstest-run-a-specific-method-each-time-it-startsup/227632#2276323Answer by SaaS Developer for Can MSTest run a specific method each time it startsup?SaaS Developer2008-10-22T21:34:22Z2008-10-22T21:34:22Z<p>Have you tried [AssemblyInitialize]?</p>
http://stackoverflow.com/questions/226530/what-is-the-best-tool-for-build-automation-for-a-one-man-software-shop/226593#2265930Answer by SaaS Developer for What is the best tool for build automation for a one-man software shop?SaaS Developer2008-10-22T16:33:38Z2008-10-22T16:33:38Z<p>I've used both CruiseControl and TeamCity extensively. For a one man shop, TeamCity is far easier to setup and configure than CruiseControl. </p>
<p>For your build scripts, you can't go wrong with MsBuild or NAnt. I've also been considering Powershell for this but I have not attempted it yet.</p>
http://stackoverflow.com/questions/222783/what-is-the-quickest-way-to-get-the-absolute-uri-for-the-root-of-the-app-in-asp/222812#2228121Answer by SaaS Developer for What is the quickest way to get the absolute uri for the root of the app in asp.net?SaaS Developer2008-10-21T17:57:51Z2008-10-21T17:57:51Z<pre><code>System.Web.UI.Page.Request.Url
</code></pre>
http://stackoverflow.com/questions/222456/enable-disable-step-into-debugging-on-certain-project-in-visual-studio-solution/222477#2224771Answer by SaaS Developer for Enable/Disable "Step into" debugging on certain project in visual studio solutionSaaS Developer2008-10-21T16:16:55Z2008-10-21T16:16:55Z<p>One thing to check for is that your supporting project assembly has not been installed in the GAC. Open a command prompt and run the following to make sure...</p>
<p>gacutil /l <em>assemblyName</em></p>
http://stackoverflow.com/questions/222309/calculate-last-day-of-month-in-javascript/222320#2223200Answer by SaaS Developer for Calculate last day of month in javascriptSaaS Developer2008-10-21T15:37:55Z2008-10-21T15:37:55Z<p>No, not all browsers will use 0 as the last day. IE and Firefox will but Opera will not.</p>
<p>Check out the following source for more info:</p>
<p><a href="http://javascript.about.com/library/bllday.htm" rel="nofollow">Last day of Month</a></p>
http://stackoverflow.com/questions/1905238/linq-to-sql-in-asp-net-mvc-runs-as-network-service-when-using-impersonation/1905318#1905318Comment by SaaS Developer on Linq to SQL in ASP.Net MVC Runs as Network Service when using ImpersonationSaaS Developer2009-12-15T05:27:07Z2009-12-15T05:27:07ZGabe, I am using impersonation. There is a logged-in user in this scenario as the application is using NT Authentication on an intranet. Each user is assigned to a role and each role has unique privileges that need to be enforced at the db.http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/98616#98616Comment by SaaS Developer on Favorite Visual Studio keyboard shortcutsSaaS Developer2009-12-14T16:58:26Z2009-12-14T16:58:26ZI usually hit "Esc" to get back.http://stackoverflow.com/questions/1037160/does-mscrm-web-service-support-database-transactions/1057485#1057485Comment by SaaS Developer on Does MSCRM web-service support database transactions?SaaS Developer2009-07-01T23:09:06Z2009-07-01T23:09:06Z5.0 will not have transaction support except within the context of a plugin.http://stackoverflow.com/questions/228024/what-major-applications-does-microsoft-sell-which-use-the-net-framework/228033#228033Comment by SaaS Developer on What major applications does Microsoft sell which use the .NET framework?SaaS Developer2008-10-23T02:20:55Z2008-10-23T02:20:55ZJonathan, that is simply not true. Dynamics Axapta and Dynamics CRM are two entirely different products offered by Microsoft! My post was regarding CRM. You can read for yourself about CRM being on .Net: <a href="http://windowsitpro.com/article/articleid/26875/microsoft-crm-for-the-net-environment.html" rel="nofollow">windowsitpro.com/article/articleid/…</a>http://stackoverflow.com/questions/228024/what-major-applications-does-microsoft-sell-which-use-the-net-framework/228033#228033Comment by SaaS Developer on What major applications does Microsoft sell which use the .NET framework?SaaS Developer2008-10-23T00:45:15Z2008-10-23T00:45:15ZMicrosoft did buy a company that built a CRM app. Their dev group was on the original CRM product team. However, they did build Microsoft CRM from the ground up.http://stackoverflow.com/questions/227621/can-mstest-run-a-specific-method-each-time-it-startsup/227632#227632Comment by SaaS Developer on Can MSTest run a specific method each time it startsup?SaaS Developer2008-10-22T21:47:37Z2008-10-22T21:47:37ZLol, yeah we've all been there before.http://stackoverflow.com/questions/222783/what-is-the-quickest-way-to-get-the-absolute-uri-for-the-root-of-the-app-in-asp/222812#222812Comment by SaaS Developer on What is the quickest way to get the absolute uri for the root of the app in asp.net?SaaS Developer2008-10-21T18:08:19Z2008-10-21T18:08:19ZTry this: Request.ServerVariables["SERVER_PORT_SECURE"] + Request.ServerVariables["SERVER_NAME"] +
Request.ServerVariables["SERVER_PORT"] +
Request.ApplicationPath;http://stackoverflow.com/questions/219243/visual-studio-2008-doesnt-show-my-xml-comments-in-js-files/219279#219279Comment by SaaS Developer on Visual Studio 2008 doesn't show my XML comments in JS files.SaaS Developer2008-10-20T18:03:31Z2008-10-20T18:03:31ZActually, you should only need this when the function you are calling is outside your current .js file.http://stackoverflow.com/questions/218951/simple-model-checker-toolComment by SaaS Developer on Simple Model Checker ToolSaaS Developer2008-10-20T16:04:06Z2008-10-20T16:04:06ZI think you should revise your question so that it is more clear. This question could relate to a dozen different model checking scenarios.http://stackoverflow.com/questions/214077/c-3-0-anonymous-types-naming/214084#214084Comment by SaaS Developer on C# 3.0 Anonymous Types: NamingSaaS Developer2008-10-17T22:52:25Z2008-10-17T22:52:25ZCMS, do you see any problem with adding the underscore or some other character and replacing this character with a space within the user control caption?http://stackoverflow.com/questions/202802/why-you-i-should-not-learn-another-language/202850#202850Comment by SaaS Developer on Why you/I should not learn another language?SaaS Developer2008-10-17T04:57:47Z2008-10-17T04:57:47ZYeah that's what I was trying to say. No one will (or should) argue against that fact.http://stackoverflow.com/questions/205722/what-are-the-key-use-cases-for-use-of-virtualization-in-software-development/205737#205737Comment by SaaS Developer on What are the key use cases for use of virtualization in software development?SaaS Developer2008-10-17T04:54:50Z2008-10-17T04:54:50ZYes, you are correct. Once you setup your dev environment within the VM the way you want it, you create a snapshot/baseline image. You would continue to use source control to manage your source code. If or your env. crashes or a new hire comes on just use the base image and checkout latest source.