bzbetty

Stories kicked by bzbetty

VS 2010 / .NET 4 Release Candidate - ScottGu's Blog(weblogs.asp.net)

submitted by dbasarab617dbasarab617(100) 2 years, 3 months ago

Right now the downloads are available only to MSDN subscribers. Starting Wednesday (Feb 10th) everyone will be able to download them (regardless of whether you are a MSDN subscriber or not). read more...

add a comment |category: |Views: 46

tags: another

Multi-tenancy and ASP.NET MVC - Views with a ViewEngine(codeofrob.com)

submitted by robashtonrobashton(384) 2 years, 3 months ago

Carrying on the series by talking about View Engines and how to use one to allow modules to provide their own views read more...

add a comment |category: |Views: 330

tags: another

Visual Studio 2010 and .NET Framework 4 RC Now Available(blogs.msdn.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 3 months ago

Today, we are making available the Release Candidate (RC) for Visual Studio 2010 and .NET Framework 4 to all MSDN subscribers. The RC will be made available to the world on Wednesday, February 10th. The RC includes a go-live license for people who want to deploy in their production environment. read more...

add a comment |category: |Views: 217

tags: another

ASP.NET MVC security checklist(codevanced.net)

submitted by andreisterandreister(140) 2 years, 3 months ago

ASP.NET security checklist from a "think-like-a-hacker" perspective: steps one might want to go through once development is done. read more...

add a comment |category: |Views: 602

tags: another

C# 4.0 Dynamic Lookup - Are You Kidding Me? (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 6 months ago

One of the core features introduced in C# 4.0 is called Dynamic Lookup which allows a unified approach to invoking things dynamically. When you have an object of type dynamic you can do whatever you like with it, those operations are resolved only at runtime. I DON’T LIKE IT, ARE YOU KIDDING ME? read more...

2 comments |category: |Views: 824

tags: another

C# 4.0 New Features Part 2.1 - default parameter intrigue(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 6 months ago

Do default parameters work the way you think they do? Probably Not! read more...

add a comment |category: |Views: 445

tags: another

C# 4.0 New Features Part 2 - default and named parameters(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 6 months ago

New feature in C# 4.0 number 2, default and named parameters! Look at what they are, and how they are used in C# 4.0. read more...

add a comment |category: |Views: 481

tags: another

C# 4.0 New Features Part 1.1 - dynamic keyword second look(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 6 months ago

A second look at the dynamic keyword and an update on the performance statistics that we looked at in Part 1. read more...

add a comment |category: |Views: 525

tags: another

C# 4.0 New Features Part 1 - dynamic keyword(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 6 months ago

A quick look at the new "dynamic" keyword in C# 4.0 and its implications for application development. read more...

add a comment |category: |Views: 687

tags: another

Solving common problems with Compiled Queries in Linq to Sql for high (msmvps.com)

submitted by oazabiroazabir(1805) 3 years, 6 months ago

If you are using Linq to SQL, instead of writing regular Linq Queries, you should be using Compiled Queries. if you are building an ASP.NET web application that’s going to get thousands of hits per hour, the execution overhead of Linq queries is going to consume too much CPU and make your site slow. There’s a runtime cost associated with each and every Linq Query you write. read more...

add a comment |category: |Views: 292

tags: another

Redirect a Login By Role in C# ASP .NET(primaryobjects.com)

submitted by surfer6surfer6(362) 3 years, 7 months ago

Learn how to automatically redirect users upon login, based upon their role membership with a handy method and the web.config file. read more...

add a comment |category: |Views: 180

tags: another

Pluggable ASP.NET CacheManager(john-sheehan.com)

submitted by johnsheehanjohnsheehan(4785) 3 years, 7 months ago

A CacheManager class that you can easily write your own providers (memcached, Velocity, etc.) for. Includes providers for request-length caching and ASP.NET's built-in Cache object. read more...

2 comments |category: |Views: 459

tags: another

Windows comming soon to Amazon EC2(aws.typepad.com)

submitted by tiernanotiernano(1674) 3 years, 7 months ago

This is big news! Amazon are to enable Windows Support on EC2. this will allow users to kick of Windows images for running SQL Servers, IIS instances and anything else (even HPC stuff) in the cloud! SWEET! read more...

2 comments |category: |Views: 332

tags: another

Convert a String to Title Case(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 3 years, 7 months ago

Text can be converted to entirely upper case or lower case using standard methods from the String class. Another common format is title case, where the first letter of each word is usually capitalised. This case can be applied using the TextInfo class. read more...

add a comment |category: |Views: 39

tags: another

Separate Assemblies != Loose Coupling(codebetter.com)

submitted by scottcreynoldsscottcreynolds(195) 3 years, 7 months ago

read and learn read more...

add a comment |category: |Views: 403

tags: another

Late Binding in C# using Dynamic Compilation(atalasoft.com)

submitted by eazydeazyd(970) 3 years, 7 months ago

Steve goes through his approach to using reflection, making the code easier to read, making it easier to maintain, discusses the "middle-class multiple inheritance", and provides a zipped project of the AdapterCompiler. read more...

add a comment |category: |Views: 404

tags: another