RogerTwose
Name: RogerTwose
Score: 3,212.75
Last Seen: 24 days, 17 hours, 53 minutes ago
Member Since: 14 October, 2009
DotNetShoutout
atom rss
8
shouts

How to use Validation Controls in ASP.NET

published 23 days, 19 hours, 52 minutes ago posted by KhaledKhaled 25 days, 22 hours, 3 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Sunday, February 14, 2010 9:08:02 AM GMT
Using Validation Controls is faster than doing validation on the server side. Please note that there are some cases where you can’t set a rule. In that Case you will add those types of validation to your Business Logic Layer, when you validate in your Class Library before sending the Data to the Data Layer to be executed. There is only one reason why Microsoft created Validation controls. The Reason is simple “Never Trust the user input” (more)
category: ASP.NET | clicked: 29 | comment | | source: www.dotnetfunda.com
7
shouts

.NET - Server Side Validation With ASP.NET MVC And Data Annotations

published 24 days, 18 hours, 2 minutes ago posted by KhaledKhaled 25 days, 14 hours, 36 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 4:35:05 PM GMT
When you’re using ASP.NET MVC, there’s no validation controls for you compared to ASP.NET WebForms. It is always important to validate data on the server as well as the client (more)
category: ASP.NET | clicked: 34 | comment | | source: www.dotnetcurry.com
7
shouts

HighOnCoding: Get high on ASP.NET articles, videos, podcasts and more!

published 24 days, 18 hours, 2 minutes ago posted by KhaledKhaled 25 days, 22 hours, 9 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 9:01:43 AM GMT
When using model binding in an ASP.NET MVC application we make sure that our user interface elements matches with the domain object. But sometimes this is not possible as user interface contains elements which does not make any sense on the domain objects. In this article we will demonstrate how to implement ViewModels which closely reflects the elements on the interface (more)
category: ASP.NET | clicked: 35 | comment | | source: www.highoncoding.com
9
shouts

Extreme ASP.NET: Looking Ahead to ASP.NET 4.0

published 22 days, 17 hours, 19 minutes ago posted by KhaledKhaled 25 days, 16 hours, 49 minutes ago
Wednesday, February 17, 2010 1:51:42 PM GMT Sunday, February 14, 2010 2:21:50 PM GMT
I don’t have the space to cover every addition to ASP.NET in one article, as there are numerous improvements to both frameworks and the underlying runtime. Instead, I’ll highlight what I think are the important new features for Web Forms and MVC. (more)
category: ASP.NET | clicked: 57 | comment | | source: msdn.microsoft.com
6
shouts

HighOnCoding: Creating WPF Live Counter as Background

published 24 days, 18 hours, 2 minutes ago posted by KhaledKhaled 25 days, 22 hours, 16 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:54:52 AM GMT
In the last article we demonstrated how to create a character counter for the RichTextBox control by making a custom SharpRichTextBox control. In this article we will demonstrate how to display the live character count as the background of the SharpRichTextBox control. (more)
category: Foundation | clicked: 26 | comment | | source: www.highoncoding.com
9
shouts

Free Windows Azure Access for Scientists

published 24 days, 18 hours, 2 minutes ago posted by wzackwzack 25 days, 10 hours, 25 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:45:21 PM GMT
Microsoft, in conjunction with the National Science Foundation (NSF) will be giving research scientists free access to Windows Azure for three years in order to help them solve problems requiring massive amounts of computation. (more)
category: Architecture | clicked: 29 | comment | | source: blogs.msdn.com
10
shouts

Innovation Showcase : Confused about Windows Azure Billing?

published 24 days, 18 hours, 2 minutes ago posted by wzackwzack 25 days, 10 hours, 5 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 9:05:16 PM GMT
Confused about Windows Azure Billing? The Windows Azure Platform is based on an Operational Expenditure (OPEX) model as opposed to the on-premise Capital Expenditure (CAPEX) model that most of us are used to. This means that means that, while you pay nothing up front for using Azure storage and computational resources, you do have to understand how your use of those resources will be billed to you. This blog post does a pretty good job of explaining how this works. If you want to expl... (more)
category: Architecture | clicked: 42 | comment | | source: blogs.msdn.com
11
shouts

Innovation Showcase : Monitoring Applications in Windows Azure

published 24 days, 18 hours, 2 minutes ago posted by wzackwzack 25 days, 9 hours, 48 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 9:22:26 PM GMT
Monitoring Applications in Windows Azure Hedgehog’s Cloud Application Monitor was created to fill a gap in creating application for the Azure Cloud. There is no easy way to monitor applications running in the cloud, and no quickly accessible repository of historical data. The Cloud Application Monitor downloads diagnostic information from the cloud and stores it in a local SQL server database. Hedgehog has posted this application on Codeplex as a free download. (more)
category: Architecture | clicked: 43 | comment | | source: blogs.msdn.com
8
shouts

Displaying Relative Time (C#)

published 23 days, 19 hours, 52 minutes ago posted by BlackWaspBlackWasp 25 days, 18 hours, 41 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Sunday, February 14, 2010 12:29:54 PM GMT
When developing software that works with time stamped information, it is common to show the date and time at which an item was created or last updated. A user-friendly alternative is to display a relative time, such as "Two Hours Ago". (more)
category: UX | clicked: 61 | comment | | source: www.blackwasp.co.uk
9
shouts

Scott Hanselman - Back to Basics: C# 4 method overloading and dynamic types

published 24 days, 18 hours, 2 minutes ago posted by jantujantu 26 days, 14 hours, 38 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Saturday, February 13, 2010 4:32:46 PM GMT
"I'm too lazy to tell you the type of this variable, so you figure it out, compiler."However, it's more useful than just promoting terseness or laziness:var i = 10; // implicitly typed int i = 10; //explicitly typed Although var is a great way to start arguments about coding standards at your work, there are times when it is required around anonymous types. Here's an example from MSDN:/ Example: var is required because// the ... (more)
category: Foundation | clicked: 73 | comment | | source: www.hanselman.com
tags: Back to Basics, Learning .NET, Programming, VS2010
7
shouts

system.data.objects dev guy : Cascade Delete and 1-to-1 (or 1-to-0..1) Relationships

published 24 days, 18 hours, 2 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 25 days, 10 hours, 38 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:32:51 PM GMT
Cascade Delete and 1-to-1 (or 1-to-0..1) Relationships Here’s another episode in my ongoing mission to help folks be successful using the Entity Framework, as well as to learn more about how folks use the Entity Framework so that each release will be better than the last.  Today’s task: Using cascade delete with 1-to-1 relationships.The problem I got an email from a customer asking for help with getting cascade delete to work properly in his application.  After going through the normal obvious potenti... (more)
category: Architecture | clicked: 39 | comment | | source: blogs.msdn.com
tags: EF, EF4, entityframework, entityframework4
5
shouts

Defining Constraints in an EF4 model that don’t exist in the database : Don't Be Iffy

published 24 days, 18 hours, 2 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 25 days, 10 hours, 54 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:16:49 PM GMT
In the first version of Entity Framework, if you wanted to create a PK/FK association between entities where there was no such constraint defined in the database you have to manually edit the SSDL (and lose that edit if you update the model from db). Why would you want to do this? The typical use case is when you are stuck with a database that is poorly designed and you are not allowed to make changes to it. In Entity Framework 4, as long as the Primary Keys are defined in the db (otherwise the entitie... (more)
category: Foundation | clicked: 38 | comment | | source: thedatafarm.com
tags: EF4, entityframework
5
shouts

SQL Server 2008 Data Types and Entity Framework 4 : Don't Be Iffy

published 24 days, 18 hours, 2 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 25 days, 10 hours, 40 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:31:07 PM GMT
Because I’ve had a lot of conversations about spatial data types lately, I thought I would create a SQL Server table that contained one of every type then bring it into an entity data model using the wizard to see what happens. This is in EF4. Here are screenshots of the table and the entity showing their property types. This way you can see what is and isn’t supported. The wizard excluded four fields it still doesn’t recognize at all.geographygeometryhierarchyidsql_variant If you focus on the entit... (more)
category: SQL | clicked: 49 | comment | | source: thedatafarm.com
tags: EF4, Entity Framework, entityframework4, SQLServer
8
shouts

dnrTV - Show #166 - Michael Cummings on XNA Development Part 2

published 24 days, 18 hours, 2 minutes ago posted by jantujantu 25 days, 14 hours, 4 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 5:06:58 PM GMT
Michael Cummings returns to wrap up this two part series on developing XBox 360 applications using XNA for .NET. Michael creates the scoring, end-game and menu systems and then deploys it to his XBox.Michael Cummings has over 15 years experience as a principal s... (more)
category: Screencast | clicked: 24 | comment | | source: www.dnrtv.com
tags: dnrTV, XBox, xbox 360, XNA
8
shouts

Model View Presenter pattern with Castle in ASP.NET

published 24 days, 18 hours, 2 minutes ago posted by lenielleniel 25 days, 1 hour, 39 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Monday, February 15, 2010 5:32:07 AM GMT
This post shows how to implement the Model View Presenter (MVP) pattern using Castle Project, which is an Inversion of Control Container framework. Employing Castle Project containers and ASP.NET it turns out to be a simple task to have a Web App that takes advantage of the MVP pattern. You'll see how to: use inversion of control (IoC), define a base presenter, define a base view, implement a view interface, implementing a view that inherits from the view interface, implement the presenter and put them t... (more)
category: ASP.NET | clicked: 46 | comment | | source: www.leniel.net
tags: ASP.NET, C#, Castle Project, Design Pattern, Inversion of control, IoC, Model-View-Presenter, MVP, Programming
6
shouts

Meta-Me : Tip 54 – How to improve performance using Statement Expressions

published 24 days, 18 hours, 2 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 25 days, 10 hours, 48 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:22:44 PM GMT
Tip 54 – How to improve performance using Statement Expressions Background: While writing the update post in my Data Service Provider series I ended up writing this block of reflection code to copy properties values from one object to another: foreach (var prop in resourceType           .Properties           .Where(p => (p.Kind & ResourcePropertyKind.Key)                           != ResourcePropertyKind.Key)) {       var clrProp = clrType            .GetProperties()    ... (more)
category: Foundation | clicked: 44 | comment | | source: blogs.msdn.com
tags: C#, Expressions, Statement Expression, Tips
7
shouts

IObservable based Messaging Broker for Silverlight

published 24 days, 18 hours, 2 minutes ago posted by orktaneorktane 25 days, 1 hour, 5 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Monday, February 15, 2010 6:06:03 AM GMT
One of the challenges with modern application development is loosely-coupled communication between various independent components within an application; by and large it is not a technical problem, but one of having a common denominator and ensuring that parties to the communication don't entangle each other with dependencies. To this challenge in nRoute we have a messaging framework that decouples application-wide communication using a mediator, against which you can both publish and subscribe without cr... (more)
category: Silverlight | clicked: 34 | comment | | source: www.orktane.com
tags: IObservable, Messaging, nRoute, Rx
7
shouts

Configuring NHibernate to use MySql – and the small runtime gotcha!

published 24 days, 18 hours, 2 minutes ago posted by http://daniewat82.myopenid.com/http://daniewat82.myopenid.com/ 25 days, 11 hours, 4 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 8:07:09 PM GMT
Currently I am in the process of building (yet another) open source blog engine (public repository will be setup soon – I am just getting the core written first!). I really want this application remain database agnostic, so I am using NHibernate to satisfy my data access needs. I ran info a few issue’s when setting up NHibernate to work with MySql and thought it best to share my findings from the last 2 hours of torment. :-) (more)
category: ASP.NET | clicked: 44 | comment | | source: www.dotnetguy.co.uk
6
shouts

Multi-tenancy in ASP.NET MVC - Controller Actions (Part I)

published 24 days, 18 hours, 2 minutes ago posted by robashtonrobashton 25 days, 13 hours, 4 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 6:07:10 PM GMT
The next part in this series on multi-tenancy in ASP.NET MVC - locating controller actions from your modules on a per-request basis. (more)
category: ASP.NET | clicked: 58 | comment | | source: codeofrob.com
tags: ASP.NET MVC, Multi-tenancy, Multi-Tenant
8
shouts

Google Buzz Widget - A jQuery Plugin

published 24 days, 18 hours, 2 minutes ago posted by MikeMoreMikeMore 25 days, 9 hours, 31 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Sunday, February 14, 2010 9:40:01 PM GMT
This is a jQuery widget for the brand new social network -Google Buzz- that you can embed anywhere to integrate your buzz stream into your page. (more)
category: Ajax | clicked: 63 | comment | | source: www.moretechtips.net
tags: Google Buzz, jQuery
Previous 1 2 3 4 5 6 7 8 9 10 ... 68 69 Next