evawhite

Stories kicked by evawhite

A Practical Review of ASP.NET MVC(joshuamcharles.com)

submitted by charlesjcharlesj(135) 3 years, 9 months ago

My big project for the summer has been the creation of a content management system for my job. Due to deployment restrictions, I was forced to use the .NET platform for development. After hearing rumors of .NET running Rails via IronRuby, I jumped at the chance to write a Rails application that could be deployed to IIS on Windows. However, after getting a prototype running, I discovered that this would be infeasible for the time table I was looking at. IronRuby simply would not be ready on time. My second choice, then, was the new ASP.NET MVC framework. read more...

add a comment |category: |Views: 1355

tags: another

Visual Studio .NET Platform Target Explained(visualstudiohacks.com)

submitted by darrenstokesdarrenstokes(300) 3 years, 9 months ago

This article discusses the meaning of the Platform Target setting for Visual Studio projects and gives some tips and links that will be helpful when migrating to 64-bit processing. read more...

1 comment |category: |Views: 699

tags: another

GiftListr Beta - ASP.NET MVC Facebook Application - Mike Bosch's Blog (weblogs.asp.net)

submitted by alleyalley(2840) 3 years, 9 months ago

GiftListr is the only truly universal gift registry allowing you to add products from ANY website without limitations. Just browse stores the way you usually do when you shop online. Once you find the item you want, simply copy-and-paste the url into the GiftListr application. GiftListr will then download all the product information and product images available. You can add notes to each item and share you gift list with friends. read more...

add a comment |category: |Views: 144

tags: another

Reduce ASP.NET Page size and complexity using JQuery-Part 2(weblogs.asp.net)

submitted by SanjeevanaSanjeevana(795) 3 years, 9 months ago

This is part 2 of my series for ASP.NET AJAX and JQuery comparison. You can read part 1 here. In my last 2 articles (Dynamically create ASP.NET user control using ASP.NET Ajax and Web Service and Dynamically create ASP.NET user control using JQuery and JSON enabled Ajax Web Service), I explained how to access JSON data from ASP.NET AJAX script service using ASP.NET AJAX client side framework and JQuery. In this post I will compare response/ request for these two implementations. read more...

add a comment |category: |Views: 327

tags: another

SQL SERVER - 2005 - Difference Between INTERSECT and INNER JOIN (blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 3 years, 9 months ago

INTERSECT operator in SQL Server 2005 is used to retrieve the common records from both the left and the right query of the Intersect Operator. INTERSECT operator returns almost same results as INNER JOIN clause many times. When using INTERSECT operator the number and the order of the columns must be the same in all queries as well data type must be compatible. Let us see understand how INTERSECT and INNER JOIN are related.We will be using AdventureWorks database to demonstrate our example. read more...

3 comments |category: |Views: 294

tags: another

Sandcastle Removed From CodePlex(squaredroot.com)

submitted by TroyMGTroyMG(2670) 3 years, 11 months ago

Sandcastle - the .Net community equivalent of RDoc/JavaDoc and the spiritual successor of the now defunct NDoc – has been removed from CodePlex. It’s fate is currently up in the air and Microsoft is asking you for input on what should happen next. read more...

2 comments |category: |Views: 439

tags: another

Tips on Creating Portable APIs(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 11 months ago

Five tips and hints on creating good portable APIs. read more...

add a comment |category: |Views: 272

tags: another

Hanselminutes 116 - Distributed Caching with Microsoft's Velocity(hanselman.com)

submitted by jonasjonas(2215) 3 years, 11 months ago

Scott sits down with 2 of the architects of Velocity. read more...

add a comment |category: |Views: 178

tags: another

Two Great Web Development Tools (dev102.com)

submitted by razamitrazamit(4566) 3 years, 11 months ago

Here are two interesting tools I found while working on our Silveredo 2 theme. read more...

add a comment |category: |Views: 787

tags: another

Stop Polluting the UI Thread - Use a ThreadBarrier(blog.quantumbitdesigns.com)

submitted by QuantumBitDesignsQuantumBitDesigns(325) 3 years, 11 months ago

A ThreadBarrier is a technique for simplifying the interaction between the UI and a worker thread. No longer do UI Controls need to check InvokeRequired and do the posting of events from a worker thread. read more...

add a comment |category: |Views: 465

tags: another

Behind the scenes of the C# yield keyword(startbigthinksmall.wordpress.com)

submitted by lcorneliussenlcorneliussen(490) 3 years, 11 months ago

Yield is not a CLR feature, it's just about the C# compiler. This post explains how this works. read more...

1 comment |category: |Views: 408

tags: another

Why Are Our Programs Still Represented by Flat Files?(atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 3 years, 11 months ago

It's time to leave the secondary, external structure of our programs behind. If you can treat the reflected code from a programming language like an abstract data structure, why can’t you just keep the source itself in a similarly abstracted data structure? Isn’t the structure of a program more similar to a graph, than a list? Besides the momentum of the past, what is keeping us tied to having our code in this format? read more...

add a comment |category: |Views: 330

tags: another