Podcasts/Webcasts ASP.NET Podcast Show #136 - Rachel Appel (hey, that's me!) on Dynamic Data: http://tinyurl.com/dlr6oy ASP.NET Podcast Show #127 – Host Wally McClure talks about Dynamic Data: http://tinyurl.com/6o7s64 MSDN geekSpeak with Glen Gordon. ASP.NET Dynamic Data episode with guest Rachel Appel...
Entries categorized 'ASP.NET Dynamic Data' ↓
ASP.NET Dynamic Data Resources
Monday, February 23 2009 - ASP.NET Dynamic Data
ASP.NET Dynamic Data Routing
Thursday, November 20 2008 - ASP.NET Dynamic Data
ASP.NET Dynamic Data uses routing to match http requests with the appropriate data, actions and views to produce the output (read only, read only details, edit and insert pages) that is expected for each table in the model. The routing system found in Dynamic Data is based on the ASP.NET routing system...
Custom Validation in ASP.NET Dynamic Data using Attributes
Tuesday, October 28 2008 - ASP.NET Dynamic Data
You have two choices for validation in ASP.NET Dynamic Data: Annotating the data model with attributes or extending the data model using partial methods (see here ). We’ll take a look at annotating the data model to provide validation for Dynamic Data applications. Attribute Based Validation: Dynamic...
Custom Validation in ASP.NET Dynamic Data using Attributes →
Custom Validation and Business Logic in ASP.NET Dynamic Data using Partial Methods
Monday, October 27 2008 - ASP.NET Dynamic Data
You have two choices for validation in ASP.NET Dynamic Data: Annotating the data model with attributes or extending the data model using partial methods. We’ll take a look at using the OnChanging partial methods from the data model to provide custom validation for Dynamic Data applications. Validation...
Custom Validation and Business Logic in ASP.NET Dynamic Data using Partial Methods →
Custom Field Templates in ASP.NET Dynamic Data
Tuesday, October 07 2008 - ASP.NET Dynamic Data
Field Template Basics ASP.NET Dynamic Data provides field templates by employing customized user controls (.ascx files) located in the \DynamicData\FieldTemplates directory and they contain the UI definitions and basic validation for each data type in your model. The controls housed inside the field...
ASP.NET Dynamic Data geekSpeak Q&A and Follow Up
Sunday, October 05 2008 - ASP.NET Dynamic Data
Below are a list of questions directly from my geekSpeak session earlier this week. Q: How do you hide a class from the scaffolding? A: Use the ScaffoldTableAttribute on the class in your data model you want to hide. [ ScaffoldTable ( false )] public partial class Products {} Q: If you are using regex...
Common ASP.NET Dynamic Data Error
Friday, October 03 2008 - ASP.NET Dynamic Data
A few folks trying out Dynamic Data have run across this error and emailed me about it: “There are no accessible tables. Make sure that at least one data model is registered in Global.asax and scaffolding is enabled or implement custom pages” It means that you forgot to register your data model (LINQ...
What is ASP.NET Dynamic Data
Monday, September 29 2008 - ASP.NET Dynamic Data
ASP.NET Dynamic Data is a new web application framework from Microsoft. Dynamic Data allows developers to quickly build web sites. Dynamic Data takes care of coding the daily grind CRUD operations including validation, data relationship management, data type management and UI display templates. All this...
MSDN Webcast: geekSpeak: ASP.NET Dynamic Data
Saturday, September 27 2008 - ASP.NET Dynamic Data
On October 1st at 3:00 PM EST I will be doing a geekSpeak with Microsoft Developer Evangelists Glen Gordon and Linsday Rutter Event Overview The geekSpeak webcast series brings you industry experts in a "talk-radio" format hosted by developer evangelists from Microsoft. These experts share...
Introduction to ASP.NET Dynamic Data Presentation
Thursday, August 28 2008 - ASP.NET Dynamic Data
