| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
6 Articles match "Helper","Visual Studio"
| Related DevelopMentor Courses | MORE | | Simple WCF SOAP-REST Multi-Project Template did it again: another multi-project Visual Studio template – this time for a simple WCF service that exposes both SOAP and REST endpoints. To get the new template, all you have to do is fire up Visual Studio, then open up the Extensions Manager from under the Tools menu. The SOAP client uses a ClientChannel helper class in order to properly clean up the client channel when exiting the “using” block and not throw an extra exception if the channel is faulted. Technical REST SOAP Visual Studio WCFDownload the source code for this post. Enjoy. DevelopMentor Courses - Monday, June 11, 2012 Essential ASP.NET MVC Training Day 2 Html Helpers While a goal of MVC is to allow developers a high degree of control over their markup, it is still desirable to provide conveniences for rendering common markup. This is why MVC includes Html Helpers. We will then see how to create your own custom Html helpers. We'll see how it uses validation helpers, ModelState, data annotations and the IValidatableObject interface. We will see using a mocking framework to implement fakes for testing as well as developing helper libraries for common tasks while unit testing. DevelopMentor Courses - Wednesday, February 22, 2012 Essential Silverlight 5 Training How do I use Expression Blend to get the most out of Visual State Manager and Behaviors? Fundamentals This module will provide you with an overview of four core aspects of Silverlight development: the use of eXtensible Application Markup Language (XAML); the code-beside programming model; the concept of the visual tree; and the use and declaration of dependency and attached properties. You define CRUD operations on the server and the WCF RIA Services tooling in Visual Studio generates the client-side proxy automatically. How do I request elevated trust? DevelopMentor Courses - Wednesday, February 22, 2012 |
27 Articles match "Helper","Visual Studio"
| The Latest from DevelopMentor | MORE | | Attend my sessions at DevWeek 2013 in London We’ll begin by discussing the built-in HTML Helpers and Model Binding. From there we will build out a.NET application using LINQ and MongoDB in a series of interactive demos using Visual Studio 2012 and C#. Want to see some of the topics covered in my blog presented live and in-person? Make your way to London in March 2013 to DevWeek ! I’ll be presenting 4 sessions covering NoSQL, ASP.NET MVC, and Cloud (Auzre and AWS mostly). Details below. Sessions : Building Rich Input Forms in ASP.NET MVC. ASP.NET MVC has gained broad adoption over the last year. Michael C. Kennedy's Weblog - Tuesday, December 4, 2012 Simple WCF SOAP-REST Multi-Project Template did it again: another multi-project Visual Studio template – this time for a simple WCF service that exposes both SOAP and REST endpoints. To get the new template, all you have to do is fire up Visual Studio, then open up the Extensions Manager from under the Tools menu. The SOAP client uses a ClientChannel helper class in order to properly clean up the client channel when exiting the “using” block and not throw an extra exception if the channel is faulted. Technical REST SOAP Visual Studio WCFDownload the source code for this post. Enjoy. DevelopMentor Courses - Monday, June 11, 2012 Screencast: Building ASP.NET MVC Forms with Razor (ASP.NET MVC Foundations Series) We’ll cover just the basics of using HTML helpers to map model properties to our HTML form and Model Binding to convert our HTML form back into our rich domain object. ASP.NET Foundations MVC Screencasts Visual Studio web2.0[note: This screencast has been adapted from my earlier blog post.]. In this ASP.NET MVC Foundations screencast, we’re going to look at building an ASP.NET MVC page which allows users to create and edit objects in our domain. Be sure to watch in HD mode for a crisp screen. . All content copyright Michael C. Kennedy. Michael C. Kennedy's Weblog - Monday, January 23, 2012 | -
| The Best from DevelopMentor | MORE | - Build a Multi-Project Visual Studio Template
To enhance developer productivity, the toolkit combines a set of helper classes with code and xml snippets, as well as Visual Studio item and project templates. After installing the toolkit, all a developer needs to do to get started is open Visual Studio and create a new project by selecting one the project templates that appear under the Mvvm category. Visual Studio makes it extremely easy to create a single-project template. Now that you’ve created a multi-project Visual Studio template, you need a way to deploy it. Enjoy. Tony and Zuzana's World - Wednesday, September 14, 2011 - Building ASP.NET MVC Forms with Razor (ASP.NET MVC Foundations Series)
We’ll cover just the basics of using HTML helpers to map model properties to our HTML form and Model Binding to convert our HTML form back into our rich domain object. Use the Visual Studio tooling to create two empty views as follows: In the resulting dialog, choose strongly-typed with Product and an empty view without referencing the scripts (we do this globally already). We’ll use the HTML Helper methods to convert our product into forms ready for the editing. Articles ASP.NET Foundations MVC Visual Studio web2.0That’s easy enough. Edit is similar. Michael C. Kennedy's Weblog - Friday, January 20, 2012 - Simple WCF SOAP-REST Multi-Project Template
did it again: another multi-project Visual Studio template – this time for a simple WCF service that exposes both SOAP and REST endpoints. To get the new template, all you have to do is fire up Visual Studio, then open up the Extensions Manager from under the Tools menu. The SOAP client uses a ClientChannel helper class in order to properly clean up the client channel when exiting the “using” block and not throw an extra exception if the channel is faulted. Technical REST SOAP Visual Studio WCFDownload the source code for this post. Enjoy. DevelopMentor Courses - Monday, June 11, 2012 - Screencast: Building ASP.NET MVC Forms with Razor (ASP.NET MVC Foundations Series)
We’ll cover just the basics of using HTML helpers to map model properties to our HTML form and Model Binding to convert our HTML form back into our rich domain object. ASP.NET Foundations MVC Screencasts Visual Studio web2.0[note: This screencast has been adapted from my earlier blog post.]. In this ASP.NET MVC Foundations screencast, we’re going to look at building an ASP.NET MVC page which allows users to create and edit objects in our domain. Be sure to watch in HD mode for a crisp screen. . All content copyright Michael C. Kennedy. Michael C. Kennedy's Weblog - Monday, January 23, 2012 - Using the Message Mediator Service in MVVM Helpers
One of the services exposed in the MVVM Helpers library is a Message Mediator. As with most things in MVVM Helpers, the above interface has a private, internal implementation that is used by default – you an override services by supplying your own implementation of the above interface in your code. project in Visual Studio 2010 – I’ll name it MessageMediatorExamples for clarity (the code is at the end of the article if you’d like to download the sample). they can be used in any.NET project type). 3: ///. 4: /// This registers a Type with the mediator. will be. - Simple MVVM Toolkit versus MVVM Light Toolkit
It also registers the toolkit assemblies so that they appear in the Visual Studio Add References dialog, and it installs Visual Studio project and item templates, code and xml snippets. And if you download the Simple MVVM Toolkit from the Visual Studio Extensions Gallery, you’ll also be notified when a new version of the toolkit is released on the gallery. Both Simple MVVM and MVVM Light toolkits ship with Visual Studio project and item templates, as well as some code snippets. Simple MVVM Toolkit would fall into the latter category. Tony and Zuzana's World - Saturday, April 23, 2011 - Type-Safe Two-Way Data Binding with INotifyPropertyChanged
My Simple MVVM Toolkit provides base classes that include convenient helper methods for firing the PropertyChanged event in a type-safe manner. To solve this, it’s possible to write a helper method that accepts a lambda expression instead of a string. convenience place for this helper method is in a base class, which can also check to make sure the PropertyChanged event is not null. The problem is that you have to pass the name of the property as a string when you fire the event from each property setter. You can download the code for this blog post here. null ). Body).Member.Name; Tony and Zuzana's World - Tuesday, January 25, 2011 %>
| | |