| DotNetKicks.com Links |
| Deserializing the request body into a parameter with ASP.NET MVC ... Shows how to deserialize the body of an HTTP request into a method parameter by using a custom IModelBinder in ASP.NET MVC. Particularly useful for PUT/POST if you're implementing a RESTful API with it. | Go |
| Add and handle application settings in the configuration file: Part II ... This article tells you how to add connection string using the configuration file itself. | Go |
| ASP.NET Interview Questions - Part 2 ... This is Part 2 of ASP.NET Interview Questions section in this also we will touch base on one of important concepts in ASP. NET. | Go |
| ASP.NET Interview Questions - Part 1 ... In this section we will touch base on one of important concepts in ASP. NET. | Go |
| Five step of how to use logging utility in your projects using applica ... It's new world of software reusability. Gone are the days when we need to build things from scratch. One of the most needed functionality is the logging utility. Every software project needs a logging utility. To make your own logging utility is a big project by itself. In this tutorial we will quickly run through how you can use Microsoft logging application blocks to log messages and activities. | Go |
| Whitehouse.gov: an ASP.NET site ... This article looks into the JavaScript libraries, HTTP headers, platform and more of the new Whitehouse website. It includes statistics and some suggestions. | Go |
| ASP.NET Interview Questions - Part 2 ... In this section we will touch base on one of important concepts in ASP. Net.
(I) Do session use cookies?
(I) How can we force all the validation control to run?
And more | Go |
| ASP.NET Interview Questions - Part 1 ... In this section we will touch base on one of important concepts in ASP. Net | Go |
| Tiny URL script for Asp.Net ... This article presents you a programmatic way to generate a short URL from a long URL. This is especially useful when you want to send e-mail messages (or even instant messages) to others and want to avoid the clients to break long URLs into multiple lines, thus rending them unclickable. | Go |
| AdRotator Standard Control ... This article will help programmer, developer to overcome the problem as: "The AdRotator adRtrCtrl/adRotator1 could not find the AdvertisementFile or the file is invalid". | Go |
| Slick-Ticket Trouble Ticketing/Help Desk System (Open Source Project) ... This is a simple, to-the-point system. It was born out of loathing of the system that I was forced to use. It was tested in a live environment with hundreds of users and ultimately de-throned our expensive and bloated ticketing software. I really enjoyed developing this and my users and I really enjoy using it, I hope some other people out there like it. | Go |
| ASP Dynamic Data Preview - More ways to exploit ADO.NET Data Services ... There's lots of interesting stuff going on in the ASP.NET team, and you can usually learn/glean/figure out most of it (if you're interested) by poking around the Codeplex ASP.NET site. They update it all the time, and you can watch their thinking. They put all sorts of stuff up there, ideas they are floating, directions they are considering and (really early) previews of those ideas and directions in the form of code. It's not production ready, more brainstorming - that's why it's on CodePlex, and why they don't exactly advertise the heck out of it. | Go |
| Add and handle connection strings in an application ... There are two ways to save data and parameters. In this case we save application parameters like information entered by the user during the installation process. | Go |
| Caching Interview Questions - Part 2 ... In this section we will touch base rest of the important concepts in .NET Caching. | Go |
| Delicious tagged ASP.NET Links |
| xVal - a validation framework for ASP.NET MVC " Steve Sanderson's blog | Go |
| How to Run Windows, IIS and ASP.NET in the Cloud on Amazon EC2 (in 15 mins) : BillS IIS Blog : The Official Microsoft IIS Site | Go |
| The Official Microsoft ASP.NET Site | Go |
| Scott Gu Blog Links |
| Silverlight and the 2009 Presidential Inauguration ... Tomorrow’s presidential inauguration of Barack Obama will be a truly historic event. Silverlight is being used as an enabling technology on several sites that will allow those of us who can’t be there in person to share the experience online. Presidential Inaugural Committee The Presidential Inaugural Committee has worked with iStreamPlanet to enable live and live and on-demand video streaming of the Inauguration events at the official Presidential Inaugural Committee web site: www.pic2009.org . It streamed its first live video on Saturday, with the train ride that took President-elect Obama from Philadelphia to Washington, D.C. The official Inaugural swearing-in ceremony, speeches and parade will also be streamed live online on Tuesday, January 20. You can read more about the Presidential Inaugural Committee here . Update : The site was viewable not just on Windows and Mac systems with Silverlight, but also on Linux systems using Moonlight (the Linux version of Silverlight built by Novell), You can learn more about the Linux support here . CNN and MSNBC with Photosynth CNN and MSNBC are both launching Photosynth viewers that will help capture the Oath of Office experience. They will combine pictures takes from professional photographers with pictures uploaded from people in the crowd to create an interactive Photosynth experience of the event using Silverlight’s built-in DeepZoom feature to deliver an amazing 3D viewing of it. Check out CNN’s and MSNBC’s pages a few hours after viewers send in their pictures of the inauguration crowd, the President-elect’s raised hand, and everything in between. You can learn more about Photosynth and Silverlight from the Photosynth team blog here . CBS Television Stations CBS Television Stations will be leveraging Silverlight and Move Networks’ streaming services to deliver a live HD streaming experience (up to 2.4 Mpbs) for online viewers. CBS will roll out the experience to a number of major market stations including: Chicago, Los Angeles, Denver and New York. Visitors to the CBS sites will be able to watch a variety of inaugural activities, with up to seven camera feeds for live events, as well as reports from CBS reporters on site, and real-time Twitter integration. You can watch the CBS experience here . This week will be an exciting part of history. Hope you get a chance to enjoy experiencing it with Silverlight! Scott | Go |
| ASP.NET MVC Design Gallery and Upcoming View Improvements with the ASP.NET MVC Release Candidate ... Today we launched a new ASP.NET MVC Design Gallery on the www.asp.net site. The design gallery hosts free HTML design templates that you can download and easily use with your ASP.NET MVC applications. Included with each design template is a Site.master file, a CSS stylesheet, and optionally a set of images, partials, and helper methods that support them. The gallery allows you to preview each of the designs online, as well as download a .zip version of them that you can extract and integrate into your site. The gallery allows anyone to create and submit new designs under the creative commons license. Visitors to the gallery can vote to provide feedback on them (thumbs up/thumbs down). The most popular designs show up at the top of the gallery. We think this will provide a useful way for developers to more easily create attractive, standards compliant, sites. It will also hopefully encourage folks to create and share designs that can be easily re-used by others. Upcoming View Improvements with the Release Candidate While on the topic of UI, I thought I'd also share a few details about some of the View-related improvements that are coming with the new ASP.NET MVC Release Candidate (RC) build that will be shipping shortly. In addition to bug fixes, the release candidate incorporates a number of view-specific feature additions and community suggestions. Views without Code-Behind Files Based on feedback from a lot of people, we've decided to make a change so that MVC view files by default do not have code-behind files. This change helps to reinforce the purpose of views in a MVC world (which are intended to be purely about rendering and to not contain any non-rendering related code), and for most people eliminates unused files in the project: With the ASP.NET MVC Beta, developers could eliminate the code-behind file by using the CLR syntax for generic types in a view's inherits attribute , but that CLR syntax is (to put it mildly) pretty undiscoverable and hard to use. The ASP.NET MVC team was able to combine a few extensibility features already in ASP.NET to now enable the standard VB/C# language syntax within the inherits attribute with the ASP.NET RC build: One other nice benefit of not using a code-behind file is that you'll now get immediate intellisense when you first add them to the project. With the beta you had to do a build/compile immediately after creating a view in order to get code intellisense within it. The RC makes the workflow of adding and immediately editing a view compile-free and much more seamless. Top-Level Model Property on Views With previous builds of ASP.NET MVC, you accessed the strongly typed model object passed to the view using the ViewData.Model property: The above syntax still works, although now there is also a top-level "Model" property on ViewPage that you can use: This property does the same thing as the previous code sample - its main benefit is that it allows you to write the code a little more concisely. HTML/AJAX Helpers Now Enable Expression Syntax One of the requests a few people have asked for is the ability to use strongly-typed expression syntax (instead of using strings) when referring to the Model when using a View's HTML and AJAX helper objects. With the beta build of ASP.NET MVC this wasn't possible, since the HtmlHelper and AjaxHelper helper classes didn't expose the model type in their signature, and so people had to build helper methods directly off of the ViewPage<TModel> base class in order to achieve this. The ASP.NET MVC RC build introduces new HtmlHelper<TModel> and AjaxHelper<TModel> types that are exposed on the ViewPage<TModel> base class. These types now allow anyone to build strongly-typed HTML and AJAX helper extensions that use expression syntax to refer to the View's model. For example, I could build a (very simple) strongly-typed "TextBox" helper method using | Go |
| Dec 2nd Links: ASP.NET, ASP.NET Dynamic Data, ASP.NET AJAX, ASP.NET MVC, Visual Studio, Silverlight/WPF ... I'm flying out later today on a pretty intense business trip (22,000 miles, 5 countries, 3 continents, 1 week, no sleep... :-), so my blog activity over the next week and a half will be pretty light. To keep you busy till I return, here is the latest in my link-listing series . Also check out my ASP.NET Tips, Tricks and Tutorials page and Silverlight Tutorials page for links to popular articles I've done myself in the past. ASP.NET Geolocation/Geotargeting Reverse IP Lookup Code : Scott Hanselman has a cool sample that demonstrates how to perform IP address lookups on users visiting your site to determine where they are located on the globe (down to the latitude and longitude). Pretty cool stuff. Tracking User Activity : Scott Mitchell has a nice article that discusses how to track end-user activity when visiting an ASP.NET web site. iTunes Data Grid Skin : Matt Berseth continues his cool series showing off cool new skins you can apply to ASP.NET controls (especially the GridView and DetailsView controls). This post shows off a pretty sweet iTunes like skin. Using ETW to Troubleshoot AppDomain Restarts and other Issues : Tess Ferrandez has another great post that demonstrates how to use the ETW tracing features built-into ASP.NET and Windows to trouble-shoot runtime issues. ASP.NET Dynamic Data ASP.NET Dynamic Data Videos: Joe Stagner has 6 nice ASP.NET Dynamic Data "How Do I?" videos posted on www.asp.net that you can check out to learn about the new ASP.NET Dynamic Data feature in .NET 3.5 SP1. A "Many to Many" field template for Dynamic Data : David Ebbo has a great post that talks about how to enable Many To Many scenarios with ASP.NET Dynamic Data. Customizing ASP.NET Dynamic Data and Customizing a Template Field : Laurent Duveau has two nice posts in a series he is doing on using ASP.NET Dynamic Data and customizing the UI generated from it. ASP.NET Dynamic Data Routing : Rachel Appel has a nice post that talks about how to use the new ASP.NET routing features with ASP.NET Dynamic Data to enable customized URLs. Fun with T4 Templates and Dynamic Data: David Ebbo has a cool post on how to use the T4 templating engine built-into Visual Studio to automate ASP.NET Dynamic Data form generation. Using User Controls as Page Templates in Dynamic Data: David Ebbo has another nice post that talks about how to use user controls with ASP.NET Dynamic Data. ASP.NET AJAX ASP.NET AJAX - Observing Updates to Plain Old JavaScript Objects: Dave Reed has a great blog post about one of the new features coming in ASP.NET AJAX - support for observing updates on plain old javascript objects. Using the Power of Binding to Animate Changes : Bertrand Le Roy has a nice post that talks about the new ASP.NET AJAX binding features coming and how you can use them with jQuery to animate changes. Instantiating Components on template markup : Bertrand Le Roy has a nice post that talks about client-side AJAX templating approaches and some of the new features coming in ASP.NET AJAX. Putting more than one behavior on one element and Getting a Reference to a Behavior : Bertrand Le Roy has two nice articles that talk about how to use the client-side behaviors feature of ASP.NET AJAX. Check/Uncheck all Items in an ASP.NET Checkbox List using jQuery: A nice article by Suprotim Agarwal that shows how to write client-side jQuery code to enable check/uncheck for all items within a checkbox list. ASP.NET MVC How to Setup ASP.NET MVC on IIS6 : Phil Haack has a great post that walks-through how to enable ASP.NET MVC on IIS6 servers (including how to enable it on a hosting server that you can't install anything on). Fluent Route Testing in ASP.NET MVC : Ben Scheirman has a nice post where he blogs about new helper methods he is creating that make it easier to unit test ASP.NET MVC routes using a fluent API. Autocomplete using jQuery, ASP.NET MVC and JSON : Faraz Tabibian has a nice blog sample that demonstrates how to implement an autocomplete t | Go |
| New ASP.NET Charting Control: ... Microsoft recently released a cool new ASP.NET server control - <asp:chart /> - that can be used for free with ASP.NET 3.5 to enable rich browser-based charting scenarios: Download the free Microsoft Chart Controls Download the VS 2008 Tool Support for the Chart Controls Download the Microsoft Chart Controls Samples Download the Microsoft Chart Controls Documentation Visit the Microsoft Chart Control Forum Once installed the <asp:chart/> control shows up under the "Data" tab on the Toolbox, and can be easily declared on any ASP.NET page as a standard server control: <asp:chart /> supports a rich assortment of chart options - including pie, area, range, point, circular, accumulation, data distribution, ajax interactive, doughnut, and more. You can statically declare chart data within the control declaration, or alternatively use data-binding to populate it dynamically. At runtime the server control generates an image (for example a .PNG file) that is referenced from the client HTML of the page using a <img/> element output by the <asp:chart/> control. The server control supports the ability to cache the chart image, as well as save it on disk for persistent scenarios. It does not require any other server software to be installed, and will work with any standard ASP.NET page. To get a sense of how to use the <asp:chart /> control I recommend downloading the Microsoft Chart Controls Sample Project . This includes over 200 ASP.NET sample pages that you can run locally. Just open the web project in VS 2008 and hit run to see them in action - you can then open the .aspx source of each to see how they are implemented. The below example (under Chart Types->Line Charts->3D Line and Curve Charts) demonstrates how to perform Line, Spline and StepLine charting: The below example (under Chart Types->Pie and Doughnut Charts) demonstrates a variety of pie and 3D doughnut options: The below example (under Chart Types->Advanced Financial Charts) demonstrates some graph charts: In addition to the above samples, you can download the Microsoft Chart Control Documentation or ask questions on the Chart Controls Forum to learn more. This should provide a useful (and free) addition to your standard ASP.NET toolkit of functionality, and enable you to easily add richer visualization and data workflow scenarios to your ASP.NET applications. Hope this helps, Scott | Go |
| jQuery Intellisense in VS 2008 ... Last month I blogged about how Microsoft is extending support for jQuery . Over the last few weeks we've been working with the jQuery team to add great jQuery intellisense support within Visual Studio 2008 and Visual Web Developer 2008 Express (which is free). This is now available to download and use. Steps to Enable jQuery Intellisense in VS 2008 To enable intellisense completion for jQuery within VS you'll want to follow three steps: Step 1: Install VS 2008 SP1 VS 2008 SP1 adds richer JavaScript intellisense support to Visual Studio, and adds code completion support for a broad range of JavaScript libraries. You can download VS 2008 SP1 and Visual Web Developer 2008 Express SP1 here . Step 2: Install VS 2008 Patch KB958502 to Support "-vsdoc.js" Intellisense Files Two weeks ago we shipped a patch that you can apply to VS 2008 SP1 and VWD 2008 Express SP1 that causes Visual Studio to check for the presence of an optional "-vsdoc.js" file when a JavaScript library is referenced, and if present to use this to drive the JavaScript intellisense engine. These annotated "-vsdoc.js" files can include XML comments that provide help documentation for JavaScript methods, as well as additional code intellisense hints for dynamic JavaScript signatures that cannot automatically be inferred. You can learn more about this patch here . You can download it for free here . Step 3: Download the jQuery-vsdoc.js file We've worked with the jQuery team to put together a jQuery-vsdoc.js file that provides help comments and support for JavaScript intellisense on chained jQuery selector methods. You can download both jQuery and the jQuery-vsdoc file from the official download page on the jQuery.com site: Save the jquery-vsdoc.js file next to your jquery.js file in your project (and make sure its naming prefix matches the jquery file name): You can then reference the standard jquery file with an html <script/> element like so: Or alternatively reference it using the <asp:scriptmanager/> control, or by adding a /// <reference/> comment at the top of a standalone .js file. When you do this VS will now look for a -vsdoc.js file in the same directory as the script file you are referencing, and if found will use it for help and intellisense. The annotated For example, we could use jQuery to make a JSON based get request, and get intellisense for the method (hanging off of $.): As well as help/intellisense for the $.getJSON() method's parameters: The intellisense will continue to work if you nest a callback function within the method call. For example, we might want to iterate over each JSON object returned from the server: And for each of the items we could execute another nested callback function: We could use the each callback function to dynamically append a new image to a list (the image src attribute will point to the URL of the returned JSON media image): And on each dynamically created image we could wire-up a click event handler so that when it is pressed it will disappear via an animation: Notice how the jQuery intellisense works cleanly at each level of our code. JavaScript Intellisense Tips and Tricks Jeff King from the Web Tools team wrote up a great post earlier this week that answers a number of common questions about how JavaScript intellisense works with VS 2008. I highly recommend reading it. One trick he talks about which I'll show here is a technique you can use when you want to have JavaScript intellisense work within user-controls/partials (.ascx files). Often you don't want to include a JavaScript library <script src=""/> reference within these files, and instead have this live on the master page or content page the user control is used within. The problem of course when you do this is that by default VS has no way of knowing that this script is available within the user control - and so won't provide intellisense of it for you | Go |
| Update on Silverlight 2 - and a glimpse of Silverlight 3 ... We shipped Silverlight 2 last month. Over the last 4 weeks, the final release of Silverlight 2 has been downloaded and installed on more than 100 million consumer machines. It has also recently been published to corporate administrators via the Microsoft SMS and Microsoft Update programs to enable them to automatically deploy across enterprises. Over 1 in 4 computers on the Internet now have some version of Silverlight installed. Silverlight 2 was a major release, and delivered an impressive set of cross-browser, cross-platform functionality for Media and Rich Internet Application experiences. It has been great watching new sites launch using it. Media Experiences Silverlight 2 enables the highest quality video on the web, and delivers it with the lowest TCO of any media platform. One of the capabilities built-into Silverlight 2 is its support for "adaptive streaming" - which enables video to be delivered at multiple bitrates (for example: 400Kbits, 800Kbits, 1.5Mbits, 2Mbits) with Silverlight dynamically choosing the optimal bitrate to use depending on the network bandwidth and CPU capability of the client (it can also automatically switch bitrates seamlessly if conditions change later). Silverlight's adaptive streaming support is extensible. Move Networks (who helped pioneer the concept of adaptive streaming) have already integrated their adaptive streaming solution with Silverlight. Silverlight 2 and Move were used to stream the Democratic National Convention live on the web this summer. Last month we announced that Microsoft will be adding adaptive streaming support as a free feature of our IIS7 web-server. IIS Smooth Streaming will provide an integrated way to deliver HD quality adaptive video over the web. Visit Akamai's www.smoothhd.com site to see some awesome examples of Silverlight 2 and IIS Smooth Streaming in action (with adaptive streaming up to 2.5Mbits). The NBC Olympics site used Silverlight 2 to serve more than 3,500 hours of live and on-demand Olympic coverage to over 60 million unique visitors this summer. Visitors to the site watched an average of 27 minutes of video - which is stunningly high for online video. The site used the new Silverlight adaptive streaming capability to support 1.5Mbit bitrates - which helped deliver an awesome video experience: In addition to powering the Olympics experience in the US, Silverlight was also used in France (by FranceTV ), the Netherlands (by NOS ), Russia (by Sportbox.ru ) and Italy (by RAI ). In addition to video quality, a big reason behind these broadcasters decision to use Silverlight was the TCO and streaming cost difference Silverlight provided. In the August 2008 edition of Web Designer Magazine (a Dutch publication) a NOS representative reported that they were able to serve 100,000 concurrent users using Silverlight and 40 Windows Media Servers, whereas it would have required 270 servers if they had used Flash Media Servers. Over the last month we've seen several major new deployments of Silverlight for media scenarios. For example: CBS College Sports is now using Silverlight to stream NCAA events from its 170 partner colleges and university. Blockbuster is replacing Flash with Silverlight for its MovieLink application. And Netflix two weeks ago rolled out its new Instant Watch service using Silverlight. Rich Internet Applications (RIA) Experiences Silverlight 2 delivers a cross-browser, cross-platform subset of the .NET Framework, and enables developers to build Rich Internet Applications. Developers can use either VS 2008 or the free Visual Web Developer 2008 Express to open and edit Silverlight 2 projects, and get a powerful code-focused .NET development environment. Designers can use Expression Blend 2 SP1 to open and edit the same projects and use a creative tool to sculpt and create rich user experiences. I recently blogged about the nice dev | Go |
| Styling a Silverlight Twitter Application with Expression Blend 2 ... Silverlight 2 provides a rich platform for building cross-browser/cross-platform RIA applications. One of the things that makes Silverlight so powerful is the ease with which developers and designers can collaborate together on projects. Developers can use Visual Studio to open and edit Silverlight 2 projects and get a powerful code-focused .NET development environment, and designers can use Expression Blend 2 SP1 to open and edit the exact same project and use a creative tool to sculpt and create optimal user experience designs. The WPF UI framework shipped in Silverlight further enables a great designer/developer workflow by supporting concepts like layout management, controls, styles, templates, and resources - which help avoid scenarios where designers and developers end up tripping over each other when integrating functionality, behavior and expressive design. Silverlight 2 Twitter Sample Last month I posted an in-depth blog tutorial on how to build a Silverlight 2 Digg application which you can read here . This tutorial was aimed primarily at developers, and focused on introducing the fundamental programming concepts involved when building a Silverlight 2 application. Today Celso Gomes and Peter Blois posted a cool 10 minute video tutorial that shows off using Expression Blend to stylize a Silverlight 2 Twitter Messenger application. You can watch the video here . You can download the source code for the completed Silverlight Twitter application here . The video does a nice job demonstrating how designers can re-style a Silverlight application without having to mess with the code behind it. In the process it shows some of the power and capability that Expression Blend 2 provides to build really rich user experiences. Celso starts with a developer version of the application, and then customizes and sculpts the UI to have a fun twitter character theme: The Application Model The Silverlight Twitter client is hosted within an ASP.NET server application that exposes a web service that enables the Silverlight Twitter application to communicate to the Twitter service (since Twitter does not allow direct access from client applications). Communication between the Silverlight client and the ASP.NET web server is done using Windows Communication Foundation (WCF). The client application uses a Model-View-Presenter (MVP) pattern (also known as the Model-View-ViewModel pattern) which is commonly used in large WPF applications. Even though this is a fairly simple application they wanted to take advantage of the flexibility that MVP allows and allow room for future growth. Maintaining the separation between the visuals and the application logic also enables designers to make fairly complex visual changes without impacting the basic application flow. The video goes through some examples of the styling flexibility this architecture facilitates. The Styling Process In the video, Celso highlights how Resources can help designers quickly change colors. A common Brush Resource, for example, can be used to change the color of all the text elements in the application: Celso shows how easy is to create new User Controls from graphics using Expression Blend 2 SP1 (just select multiple elements in the designer, right-click, and choose the "Make Control" menu option): And also how to create new states inside this new User Control (using the Visual State Manager feature - which is also now supported with WPF), to animate the bird (fly, blink, etc...) Celso also shows how to create animations for each state, changing advanced properties like Key Spline curves, and Repeat Behavior: He also shows how to create custom buttons from drawings (which can come from XAML or any other design tool like Photoshop or Illustrator). All the states of a Button Control are available out of the box. Expression Blend also enables you to easily change complex controls like List Boxes. Designers have acce | Go |
| Nov 6th Links: ASP.NET, ASP.NET AJAX, jQuery, ASP.NET MVC, Silverlight and WPF ... Last week was our big PDC conference, and I've been busy catching up back at work this week. I'm hoping to publish a bunch of new posts soon (including some on the PDC announcements we made). Until then, here is the latest in my link-listing series . Also check out my ASP.NET Tips, Tricks and Tutorials page and Silverlight Tutorials page for links to popular articles I've done myself in the past. ASP.NET 6 New ASP.NET Dynamic Data Videos : Joe Stagner has just published 6 new videos on the www.asp.net site that cover how to use the cool new ASP.NET Dynamic Data functionality introduced with .NET 3.5 SP1. Download Hotfix: False C# Compilation Errors for ASP.NET Code Behind Files with VS 2008 SP1 : The C# team added support for live semantic errors with background compilation in VS 2008 SP1. There were a few cases where this caused false errors to be shown with ASP.NET Web site projects. You can fix these either by disabling live semantic errors (tools->options allows you to disable this), or by downloading a recent hotfix patch which is now public. Omar Khan has a useful blog post with more details on it. Examining ASP.NET 2.0's Membership, Roles and Profile - Part 13 : Scott Mitchell has another post in his great series of ASP.NET security articles. This one covers how to create a login screen that allows admin users to log in as another user in the user database. For more on ASP.NET security, also check out Joe Stagner's recent ASP.NET Security Videos . ASP.NET Patterns Developers Should Know : Alex Homer from the Patterns and Practices (PAG) team at Microsoft has a nice article that introduces a number of common design patterns (MVC and MVP, Repository, Singleton, etc) and how you can apply them within ASP.NET applications. If you are interested in learning more about pattern based development I also highly recommend reading the Head First Design Patterns book (which has more than 250 positive reviews on Amazon). ASP.NET AJAX and jQuery Rich jQuery Intellisense with VS 2008 : Last week we published a new jQuery intellisense file for VS 2008 that delivers super-rich and accurate javascript intellisense when using jQuery. Jeff's article describes how to download and start using it today. ASP.NET and jQuery : Stephen Walther delivered an awesome talk on using jQuery with ASP.NET at the PDC conference last week. You can now watch it online for free. Click here to download his code samples and powerpoint presentation. jQuery Primer Part 1 and Part 2 : Karl Seguin has two nice posts that provide a quick overview of some of the basics of how to use jQuery. Also check out Rick Strahl's longer Introduction to jQuery article (which I've previously linked to) for a longer jQuery tutorial. ASP.NET AJAX Futures: Bertrand Le Roy delivered an awesome talk on the new ASP.NET AJAX features coming soon at the PDC conference last week. You can now watch it online for free as well as download his slides and code-samples. Working with ADO.NET Data Services with ASP.NET AJAX : Jim Wang has a nice blog post that demonstrates how to take advantage of the new ASP.NET AJAX features (client templating, ADO.NET data service support, etc) to build a data driven AJAX solution. ASP.NET MVC Bin Deployable ASP.NET MVC: Phil Haack has a useful blog post that describes step-by-step how to enable \bin directory deployment of ASP.NET MVC. This enables you to deploy ASP.NET MVC based applications on remote hosting servers that do not have ASP.NET MVC already installed (which means you don't need them to run any setup or do extra steps for your application to work). Donut Caching in ASP.NET MVC : Phil Haack has a great blog post that talks about how to implement substitution output caching with ASP.NET MVC. I coined the name "donut caching" for this technique with a previous blog post I did on using substitution output caching with ASP.NET Web Forms. Phil cove | Go |
| October 22nd Links: ASP.NET, Visual Studio, WPF and Silverlight ... Here is the latest in my link-listing series . Also check out my ASP.NET Tips, Tricks and Tutorials page and Silverlight Tutorials page for links to popular articles I've done myself in the past. ASP.NET Building a Great ASP.NET AJAX Application from Scratch : Brad Abrams has a nice end to end application tutorial that shows off building an ASP.NET AJAX application from scratch. It covers ASP.NET, LINQ, Server and Client-side AJAX, the ASP.NET AJAX Control Toolkit, jQuery and more. A great end to end read. A Guide to Learning the ASP.NET MVC Beta : Stephen Walther has a great set of links with some good videos and tutorials you can follow to learn more about the recent ASP.NET MVC beta release. ASP.NET MVC and the new IIS7 URL Rewriting Module : Scott Hanselman has a great post that shows off using the new IIS7 Rewriitng Module (which is free and very, very cool) to deliver great SEO (search engine optimization) for sites built with ASP.NET and specifically ASP.NET MVC. 7 of my Favorite jQuery plugins for use with ASP.NET : Dave Ward has a nice blog post that talks about 7 of his favorite jQuery plugins and how he uses them with ASP.NET. Using jQuery to display a modal ASP.NET UpdatePanel confirmation : Dave Ward has another nice blog post that talks about how to use jQuery with the ASP.NET AJAX UpdatePanel control. Using jQuery Load with the ASP.NET MVC Framework : Jason has a nice simple sample that demonstrates how to use jQuery to load an ASP.NET MVC view remotely and populate a page on the client. Visual Studio Essential Visual Studio Tips & Tricks that Every Developer Should Know : Stephen Walther has a fantastic article with 11 cool tips and tricks that you should make sure you know and use with Visual Studio. VS 2008 Snippet Designer : A cool utility that enables you to quickly create re-usable Visual Studio snippets. Very handy for automating common tasks. Silverlight and WPF XAML Power Toys Released for WPF and Silverlight : Karl Shifflett has released an awesome update to his XAML Power Toys download. This is a must-have download if you are doing WPF or Silverlight development, and provides a bunch of great wizards and tools that help automating application development. Very, very cool stuff. WPF Pixel Shader Effects Library on CodePlex : .NET 3.5 SP1 added Pixel Shader support to WPF - which enables you to add cool DirectX optimized visual effects to any WPF control or surface. This article from Jamie points to a nice new CodePlex project that is available that delivers a bunch of pre-built effects you can use. Silverlight 2 UI Templates : Tim Heuer writes about some cool new UI templates available for the recently released Silverlight 2. Viewing Design Time Data in VS 2008 WPF and Silverlight Designers : Karl Shifflett has another nice article that talks about some techniques you can use to see sample data in the VS 2008 WPF and Silverlight designers when building applications. Hope this helps, Scott | Go |
| ASP.NET MVC Beta Released ... Today we released a beta of the new ASP.NET MVC framework. Click here to download it. You can also visit www.asp.net/mvc to explore tutorials , quickstarts , and videos to learn more. The ASP.NET MVC Beta works with both .NET 3.5 and .NET 3.5 SP1, and supports both VS 2008 and Visual Web Developer 2008 Express SP1 (which is free - and now supports class libraries and web application project types). Today's ASP.NET MVC Beta release comes with an explicit "go-live" license that allows you to deploy it in production environments. The previous preview releases also allowed go-live deployments, but did so by not denying permission to deploy as opposed to explicitly granting it (which was a common source of confusion). Today's release is clearer about this in the license. The beta release is getting close to V1 feature complete, although there are still a few more features that will be added before the final "V1" release (including several VS tooling enhancements). The team decided to call this release a "beta", though, because the quality and testing of it is higher than the previous previews (a lot of bug fixes and performance tuning work went into it), and they feel that the core features that are in it are now "baked enough" that there won't be major changes from this release to the final product. This post contains a quick summary of some of the new features and changes in this build compared to the previous "Preview 5" release: New "Add View" Menu in Visual Studio New \Scripts directory and jQuery Support Built-in Model Binder Support for Complex Types Refactored Model Binder Infrastructure Strongly Typed UpdateModel and TryUpdateModel WhiteList Filtering Improved Unit Testing of UpdateModel and TryUpdateModel Scenarios Strongly Typed [AcceptVerbs] attribute Better Validation Error Messages HTML Helper Cleanup and Refactoring Silverlight / ASP.NET MVC Project Integration ASP.NET MVC Futures Assembly \Bin and GAC Assembly Deployment I am also planning to publish a few end to end tutorials in the weeks ahead that explain ASP.NET MVC concepts in more depth for folks who have not looked at it before, and who want a "from the beginning" set of tutorials on how to get started. New "Add View" Menu in Visual Studio With previous ASP.NET MVC preview releases you had to manually add views through the Project->Add New Item dialog in VS, and creating and wiring up everything required several manual steps (making sure the directory/file structure is right, going into the code-behind file to specify the strongly typed ViewData model type, etc). Today's beta makes the steps much easier. You can now just move your source editor cursor to be within a Controller action method in the source editor, and then right-click and select a new "Add View" context menu item (alternatively you can type the Ctrl-M Ctrl-V keyboard shortcut to invoke this without having to take your hands off the keyboard): This will bring up a new "Add View" dialog that allows you to specify the name of the view you want to create, its master page, and optionally its strongly typed ViewData "Model" type: Visual Studio will automatically pre-populate the view name based on the action method your cursor is within (you can then override this if you want). For example, if our cursor had been within an "Edit" action method when we selected "add view" it would have pre-populated the view name textbox with "Edit" instead of "Browse". The strongly typed ViewData "model" for a view can be selected from an editable ComboBox that lists all classes in (or referenced) from the MVC project: You can either select a type from the list, or manually type one in the ComboBox. You can also optionally pick an initial type from the list and then tweak it. For example, we could select the "Product" class from the list and then use the ComboBox editing support to wrap it as an IEnumerable<Product> - meaning a sequence of pr | Go |
| Silverlight 2 Released ... Today we shipped the final release of Silverlight 2. You can download Silverlight 2, as well the Visual Studio 2008 and Expression Blend 2 tool support to target it, here . Cross Platform / Cross Browser .NET Development Silverlight 2 is a cross-platform browser plugin that enables rich media experiences and .NET RIAs (Rich Internet Applications) within the browser. Silverlight 2 is small in size (4.6MB) and takes only 4-10 seconds to install on a machine that doesn't already have it. It does not require the .NET Framework to be installed on a computer to run - the Silverlight setup download includes everything necessary to play video or run applications. Developers can write Silverlight applications using any .NET language (including VB, C#, JavaScript, IronPython and IronRuby). Silverlight provides a rich set of features for development including: WPF UI Framework : Silverlight 2 includes a rich UI framework that makes building rich Web applications much easier. In includes a powerful graphics and animation engine, as well as rich support for higher-level UI capabilities like controls, layout management, data-binding, styles, and template skinning. The WPF UI Framework in Silverlight is a compatible subset of the WPF UI Framework features in the full .NET Framework, and enables developers to re-use skills, controls, code and content to build both rich cross browser web applications, as well as rich desktop Windows applications. Rich Controls : Silverlight 2 includes a rich set of built-in controls that developers and designers can use to quickly build applications. The Silverlight 2 release includes core form controls (TextBox, CheckBox, RadioButton, ComboBox, etc), built-in layout management panels (StackPanel, Grid, Panel, etc), common functionality controls (Slider, ScrollViewer, Calendar, DatePicker, etc), and data manipulation controls (DataGrid, ListBox, etc). All Silverlight controls support a rich control templating model, which enables developers and designers to collaborate together to build highly polished solutions. Rich Networking Support : Silverlight 2 includes rich networking support. It includes out of the box support for calling REST, WS*/SOAP, POX, RSS, and standard HTTP services. It supports cross domain network access (enabling Silverlight clients to directly access resources and data from resources on the web). It also includes built-in sockets networking support. Rich Base Class Library : Silverlight 2 includes a rich .NET base class library of functionality (collections, IO, generics, threading, globalization, XML, local storage, etc). It includes rich APIs that enable HTML DOM/JavaScript integration with .NET code. It includes LINQ and LINQ to XML library support (enabling easy transformation and querying of data), as well as local data caching and storage support. The .NET APIs in Silverlight are a compatible subset of the full .NET Framework. Rich Media Support : Silverlight 2 includes built-in video codecs for playing high definition video, as well as for streaming it over the web (including both live and on-demand support). Silverlight includes support for adaptively switching video bitrates on the fly based on network conditions (enabling users to avoid seeing the dreaded "buffering..." message), placing and metering ads within video streams, as well as enabling content protection. The final Silverlight 2 release delivers a tremendous amount of power and flexibility that enables you to really push the boundaries of what can be done in a browser, and enable great end user experiences. Silverlight Customers Over the last few months a number of very high profile sites have successfully launched using the beta releases of Silverlight 2. In August, NBC hosted the Olympics live on nbcolympics.com and served up 1.3 billion page views, 70 million video streams, and 600 million minutes of video content - makin | Go |
| October 10th Links: ASP.NET, ASP.NET AJAX, jQuery, IIS ... Here is the latest in my link-listing series . Also check out my ASP.NET Tips, Tricks and Tutorials page and Silverlight Tutorials page for links to popular articles I've done myself in the past. ASP.NET Best Practices for Creating ASP.NET websites with IIS 6.0 : Omar Al Zabir, author of the excellent Building a Web 2.0 Portal with ASP.NET 3.5 book , has a great article that details best practices to follow when setting up a site on IIS 6.0. Definitely worth reading and book-marking. ASP.NET Dynamic Data Videos using VB: Bill Burrows has put together an awesome series of videos that show off how to use the new ASP.NET Dynamic Data support provided in .NET 3.5 SP1. You can find more links to ASP.NET Dynamic Data tutorials in my last link post here . Exploring Caching in ASP.NET : Abhijit Jana has a nice article that discusses caching options with ASP.NET. If you are interested in another nice (but not well known) caching technique, you might also want to check out my prior Tip/Trick post on "Donut Caching" using the ASP.NET 2.0 Output Cache Substitution feature . Routing with WebForms : Wally McClure has a nice podcast that describes how to use the new ASP.NET routing infrastructure in .NET 3.5 SP1 with Web Forms based pages. A lot of people mistakenly think this feature only works with ASP.NET MVC applications - when in reality it also works with web forms pages (in fact all ASP.NET Dynamic Data sites use it). ASP.NET Continuous Integration and Deployment using CruiseControl.NET, Subversion, MSBuild and Robocopy : Omar Al Zabir has another great article - this time on implementing continuous integration with ASP.NET. ASP.NET AJAX and jQuery An Introduction to jQuery (Part 1) : Rick Strahl has posted an excellent article that introduces jQuery, and walks-through how to take advantage of it within ASP.NET pages. New AJAX Support for Data-Driven Web Apps : Bertrand Le Roy has written a great MSDN article that describes some of the new ASP.NET AJAX features available in preview form today. Also check out his blog posts here and here to learn more about how the new client-side data templating feature support. Using jQuery to enhance ASP.NET AJAX progress indication : Dave Ward has a cool article that describes how to integrate jQuery functionality with the ASP.NET AJAX UpdatePanel control to enable better progress indication status. ASP.NET AJAX: Enabling Bookmarking and the Browser's Back Button : Scott Mitchell continues his excellent series on ASP.NET AJAX and discusses how to add history points to an AJAX-enabled web page so that visitors can bookmark it, as well as to enable back/forward browser navigation. This is a new feature added to ASP.NET in .NET 3.5 SP1. 46 ASP.NET AJAX Control Toolkit Tutorials : Christian Wenz has published 46 super useful tutorials in both VB and C# that show of how to perform common scenarios with the ASP.NET AJAX Control Toolkit. Microsoft Web Platform Web Platform Installer: Make it easy to setup for web development : Scott Hanselman has a nice post that shows off the new "Microsoft Web Platform Installer" we are building that provides an easy way to quickly install every Microsoft web component out there - and quickly get a machine ready for web development. Hope this helps, Scott | Go |
| October 2nd Links: ASP.NET, ASP.NET MVC, ASP.NET Dynamic Data ... Here is the latest in my link-listing series . Also check out my ASP.NET Tips, Tricks and Tutorials page and Silverlight Tutorials page for links to popular articles I've done myself in the past. ASP.NET Amazon EC2 Support for Windows and ASP.NET: Big news announced this week: Amazon will be offering Windows Server 2008 as an option in their EC2 service. This enables you to use ASP.NET, IIS7 and SQL Server in the cloud. Using ASP.NET WebForms, MVC and Dynamic Data in a Single Application : Scott Hanselman has a nice post that demonstrates how you can have a single ASP.NET application that uses ASP.NET WebForms, MVC, WebServices and Dynamic Data. You have the flexibility to mix and match them however you want, which allows you to always use the right tool depending on the specific job. Modifying Data with the ListView's EditItemTemplate : Matt Berseth has a great post that talks about how to use the ASP.NET 3.5 ListView control to enable in-place editing scenarios - with total html markup control. 4 New Grouping Grid Skins: Vista, Bold, Win2k3 and Soft : Matt Berseth has another nice post that demonstrates how to skin the ASP.NET ListView control to enable some sweet data grouping scenarios. Unlocking and Approving User Accounts : Scott Mitchell posts another in his great series of articles on ASP.NET security (click here for all the articles in the series). This article talks about how you can setup administration pages that allow admins to lock out and approve user accounts using the ASP.NET Membership system. Adding OpenID to you website in conjunction to ASP.NET Membership : Dan Hounshell has a nice article that discusses how to add OpenID authentication support to your web-site, and use it in conjunction to ASP.NET's built-in membership system. ASP.NET MVC MVC Membership with Preview 5 : Troy Goode posts an update of his popular MVC Membership template that works with ASP.NET MVC Preview 5. It provides a set of administration pages you can use for user/role management, as well as adds support for OpenID and Windows LiveID. MVC Flickr Xplorer : Mehfuz Hossain has a cool ASP.NET MVC sample application posted that enables a nice picture explorer for FlickR photos. ASP.NET Dynamic Data Simple 5 Table Northwind Example : Matt Berseth kicks off his ASP.NET Dynamic Data tutorial series with a nice post that shows how to build a simple 5 table application using ASP.NET Dynamic Data with .NET 3.5 SP1. Dynamic Data And Custom Metadata Providers : Matt continues the series and covers the MetadataType attribute, and how you can use it to annotate your entities with additional metadata. Dynamic Menu for your Dynamic Data: Matt continues and covers how to add a data-driven menu to the site. Customizing the Delete Confirmation Dialog : Matt continues and demonstrates how to build a nice UI experience when deleting records in a dynamic data application. Experimenting with YUI's DataTable and DataSource Controls : Matt experiments with how to use client-side AJAX components together with dynamic data. Hope this helps, Scott | Go |
| jQuery and Microsoft ... jQuery is a lightweight open source JavaScript library (only 15kb in size) that in a relatively short span of time has become one of the most popular libraries on the web. A big part of the appeal of jQuery is that it allows you to elegantly (and efficiently) find and manipulate HTML elements with minimum lines of code. jQuery supports this via a nice "selector" API that allows developers to query for HTML elements, and then apply "commands" to them. One of the characteristics of jQuery commands is that they can be "chained" together - so that the result of one command can feed into another. jQuery also includes a built-in set of animation APIs that can be used as commands. The combination allows you to do some really cool things with only a few keystrokes. For example, the below JavaScript uses jQuery to find all <div> elements within a page that have a CSS class of "product", and then animate them to slowly disappear: As another example, the JavaScript below uses jQuery to find a specific <table> on the page with an id of "datagrid1", then retrieves every other <tr> row within the datagrid, and sets those <tr> elements to have a CSS class of "even" - which could be used to alternate the background color of each row: [Note: both of these samples were adapted from code snippets in the excellent jQuery in Action book] Providing the ability to perform selection and animation operations like above is something that a lot of developers have asked us to add to ASP.NET AJAX, and this support was something we listed as a proposed feature in the ASP.NET AJAX Roadmap we published a few months ago. As the team started to investigate building it, though, they quickly realized that the jQuery support for these scenarios is already excellent, and that there is a huge ecosystem and community built up around it already. The jQuery library also works well on the same page with ASP.NET AJAX and the ASP.NET AJAX Control Toolkit. Rather than duplicate functionality, we thought, wouldn't it be great to just use jQuery as-is, and add it as a standard, supported, library in VS/ASP.NET, and then focus our energy building new features that took advantage of it? We sent mail the jQuery team to gauge their interest in this, and quickly heard back that they thought that it sounded like an interesting idea too. Supporting jQuery I'm excited today to announce that Microsoft will be shipping jQuery with Visual Studio going forward. We will distribute the jQuery JavaScript library as-is, and will not be forking or changing the source from the main jQuery branch. The files will continue to use and ship under the existing jQuery MIT license. We will also distribute intellisense-annotated versions that provide great Visual Studio intellisense and help-integration at design-time. For example: and with a chained command: The jQuery intellisense annotation support will be available as a free web-download in a few weeks (and will work great with VS 2008 SP1 and the free Visual Web Developer 2008 Express SP1). The new ASP.NET MVC download will also distribute it, and add the jQuery library by default to all new projects. We will also extend Microsoft product support to jQuery beginning later this year, which will enable developers and enterprises to call and open jQuery support cases 24x7 with Microsoft PSS. Going forward we'll use jQuery as one of the libraries used to implement higher-level controls in the ASP.NET AJAX Control Toolkit, as well as to implement new Ajax server-side helper methods for ASP.NET MVC. New features we add to ASP.NET AJAX (like the new client template support ) will be designed to integrate nicely with jQuery as well. We also plan to contribute tests, bug fixes, and patches back to the jQuery open source project. These will all go through the standard jQuery patch review process. Summary We are really excited to be able to partner w | Go |
| ASP.net.com Community Links |
| Visual Studio 2008 Tips & Tricks Every developer must know ... This article shows important Tips and Tricks for Visual Studio 2008 most of them are common with VS2005, which every developer should know to increase his productivity while coding. | Go |
| User validation across pages after login using session in ASP.NET ... In this example i m showing how to validate a user across different pages whether user is logged in or not using session variables in Global.asax through Session_Start event and Application_OnPostRequestHandlerExecute event which checks for the login validation which occurs when ant asp.net event handler finish execution
Here is my login page , i've used hard coded values to login | Go |
| Understanding the What and Why of the MVC Pattern ... The Model-View-Controller (MVC) pattern is becoming more popular and some software developers are still confused by what it is and how it benefits them. In this article, Brendan explains those two things using language which should be easy for people to understand. | Go |
| Check/Uncheck all Items in an ASP.NET CheckBox List using jQuery ... In this article, we will explore how to use jQuery to select unselect all the checkboxes in an ASP.NET CheckBoxList. | Go |
| Adding multiple client-side event handlers to ASP.NET controls ... An article on using jQuery to attach multiple client side events handlers from code behind to ASP.NET server controls . | Go |
| How to make image thumbnail using ASP.NET(C#) ... This sample code shows you how to make image thumbnail in ASP.NET and C#. | Go |
| Adding javascript and css during an Ajax Partial Postback ... This article will show how to inject JavaScript and css into an Ajax partial postback response. If you have started using Ajax, you may have noticed that during an Ajax postback, only items inside the updatepanel are refreshed. This is known as an Ajax Partial Postback or an Ajax Partial Page Rendering. If you are programatically inserting code such as custom javascript or css for a user control you have inside of an update panel, you may have noticed that the css or javascript was not sent back to the client's browser during the partial postback response. This would apply to new code being sent just in the partial postback response. | Go |
| How to encrypt a query string ? ... Encrypt/Decrypt a query string with 2 lines of code using TSHAK's free Secure String Component | Go |
| Making Asynchronous Calls to WCF Services from ASP.NET ... In this article, we will see how to create a WCF service and then consume it asynchronously using ASP.NET. Asynchronous tasks can be performing using AddOnPreRenderCompleteAsync or RegisterAsyncTask methods of the Page class. | Go |
| Save Changes on Close of Browser or when exiting the page. ... This article describes on how you can implement the functionality of saving changes on close of the browser or navigating away from the current web application. It also discusses on various ways that the user can exit the page how data be saved on those events. | Go |
| CodeProject.com ASP Links |
| Access Sessions from Silverlight and ASP.Net ... Add or Retrieve Session Object from Silverlight and ASP.Net | Go |
| HTML5 Introduction ... An introduction to the new HTML5 features | Go |
| Visual Studio Add-In for Web Parts Generation ... A Visual Studio add-in that allows generation of Web Parts based on prepared ASCX controls/templates. | Go |
| Base class for skinned Web Parts and generator tool ... Base class for skinned Web Parts and a tool that will generate Web Part code based on previously made layout (ASCX) | Go |
| jQuery Based Ajax.Net library ... jQuery Based Ajax.Net library | Go |
| The IIS observer service checks the availabilty of the Intenet Information Server. ... The IIS observer service checks the availabilty of the Intenet Information Server. | Go |
| Windows workflow as WCF Service and Workflow persistence ... Workflow calculator WCF service , an example of long running workflows | Go |
| SharePoint Customization Tricks - Part 1 ... Trick #1: Hiding the list view toolbar menu items! | Go |
| ASP.NET Custom Web Configuration Section ... Learn how to define and use your own web.config sections for code libraries. | Go |
| ASP.NET Managed Page Session State ... To manage session state within page scode | Go |
| Gova's Podcast ... This is a Complete Podcasting Solution. This Solution allows to create a Podcast, maintain it and make it available to others. This is also compatible with ITunes and other Podcast Readers. This solutions also provides a inbuilt Podcast Viewer which is to overcome the restriction of Google`s Chrome. | Go |
| SharePoint Quick Start FAQ Part III ... SharePoint Quick Start FAQ Part III | Go |
| ASP.NET AJAX support in custom controls ... How to update your ASP.NET custom control to make it work with ASP.NET AJAX correctly. | Go |
| SharePoint Most Viewed Content Web Part ... Create a Web Part that displays the most viewed content. | Go |
| DotNetSlackers.com Links |
| Access Sessions from Silverlight and ASP.Net ... Add or Retrieve Session Object from Silverlight and ASP.Net... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| ASP.NET 2.0 Web Development ... Web Page Development for Desktop Applications... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| New ASP.NET MVC Design Template Posted ... Hey,My design template got posted in the gallery today. If anyone is using MVC then they can download it here:http://www.asp.net/mvc/gallery/View.aspx?itemid=71 You can also vote on it if you like the look of it ... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| Routing and Rewriting ... ASP.NET 3.5 includes a URL routing engine and IIS 7.0 can use a URL re-writing engine (x86) (x64). Routing and rewriting sound very similar, but so do robbing and rewarding you cant judge features using phonetics. Ruslan Yakushev wrote a great article on this very topic last year: IIS URL Rewriting and ASP.NET routing. Ruslan outlines the conceptual differences between the two URL hacking approaches as: URL rewriting is used to manipulate URL paths before the request is handled by the Web server.... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| Getting Ready for Mix09 ... What were you planning to do March 18-20th? If it does not have to do with Vegas and the Web, it might be time to think again! Mix09 is going to rock... I have had a chance to look at some of the sessions that are in the works (some of them haven't made it to the session list yet) and more importantly the new technology from Silverlight, to ASP.NET, to Visual Studio to Live\MESH work... It is going to be a rocking event. Teams here at Microsoft are work enormously hard ... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| ASP.NET Custom Web Configuration Section ... Learn how to define and use your own web.config sections for code libraries... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| ASP.NET Managed Page Session State ... To manage session state within page scode... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| Hiring ASP.NET Developer Immediately -apply within ... I am hiring a developer immediately on a contract basis. I'm considering this contract-to-hire. I would need this person to start within 10 days if I can, so apply immediately. This is for on-site work in Austin, TX starting in January as soon as possible. This developer will needs the following skills: ASP.NET 3.5/C# CSS JQuery 1.2 Basic graphics creation/slicing This person will work in the UI of enterprise application. The UI uses ASP.NET, and it also uses JQuery. ... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| GridView Control in ASP.NET MVC framework ... How to use GridView Control in ASP.NET MVC framework... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| Time released content in ASP.NET ... While working on the PDC2008 website, we had several time-critical updates. There were some announcements that needed to go live on the website at specific times to coincide with other marketing, there were updates to the list of of software being given to attendees that needed to go live right after the keynotes in which they were announced, etc. While some of the site ran on RSS feeds, on some pages we needed the flexibility of static HTML and CSS. While there were plenty of times where I made... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| Case Study: Helpdesk Web Application Moves to ASP.NET ... Rewriting an 8 year old website from classic ASP to ASP.NET is not easy. So when Gritware.com chose to upgrade their flagship helpdesk software, they had one key goal in mind: performance. With over 800 customers around the world, they needed a solid grid as the backbone for the project rewrite. And after comparing other grid options, Todd Hoese from Gritware, discovered the ASPxGridView. Here Todd describes how he chose DevExpress: I tested it with a database table of around 5000 records and... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| WURFL ASP.NET Implementations ... A comparison of three WURFL ASP.NET Implementations... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| Exploring Session in ASP.Net ... This article describe about session in ASP.Net 2.0 . Different Types of Session , There Configuration . Also describe Session on Web Farm , Load balancer , web garden etc.... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| ASP.net Tips ... For some interesting articles and tips for ASP.net programming http://techdotnets.blogspot.com/ ... Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here . | Go |
| ASP.NET.com Links |
| DotNetShoutOut.com was released today. ... DotNetShoutout is a Web 2.0 style social news site for .NET developers running on our open source project KiGG . Find the announcement here . From their announcement: KiGG was started as a fun project to get familiar with the new ASP.NET MVC framework and with no exception I started to hear terms like DDD, BDD, SOLID, DRY, Law of Demeter, Testability etc etc which brings me a new world of learning. I found, following alt.net community is the best way to lean these stuffs, I followed them (and still doing) ruthlessly over the blogs, twitter, podcast, discussion group etc. The latest release of KiGG is the outcome whatever I have learned from them in these days. Cheers Al | Go |
| Now Online: Comprehensive IIS7 Technical Reference ... If you’ve ever tried to find information on how to install a particular IIS7 feature, or how to configure it using the IIS Manager tool, AppCmd.exe, the new Microsoft.Web.Administration interface or WMI provider, this post is for you. Every IIS7 feature is now comprehensively documented on http://www.iis.net/ConfigReference/ This IIS7 Technical Reference provides a list of all the built-in IIS7 features, alphabetized for quick access. If you know the configuration name you are...(read more ) | Go |
| Interesting Finds: 2009 01.18~01.21 ... Web Intro to Caching,Caching algorithms and caching frameworks part 1 - part 2 Readings in Distributed Systems Optimizing your very large site for search — Part 1 Debugging Silverlight in a Web Role on the Development Fabric Playing with JSON .NET jsc - recompile your .net assembly to javascript, actionscript, php or java Microsoft Web Platform Installer 1.0 Released Opening an ASP.NET MVC project without having ASP.NET MVC installed: The project type is not supported by this installation Visual Studio 2008 Tips & Tricks for Developers:- This includes some shortcuts and some hidden features in Visual Studio 2008 which will increase your productivity Other Limiting Code Comments Increases Maintainability Refactoring: delete unneeded code Estimating Disk Space Requirements for Databases | Go |
| FJCore updates... perhaps coming soon ... I had an exchange with one of the guys from Occipital , who maintain the FJCore library . For those of you not playing along, this is a pure C# implementation for basic JPEG manipulation. It doesn't depend on the .NET Framework in any way, which means it's ideal for use in Silverlight. In any case, I've been experimenting with it to resize some images, but it uses the nearest neighbor algorithm, which is suboptimal. Something bicubic in nature would of course yield better results. The class library makes it easy enough to plug in these filters, but you need to be a bit of a math nerd. I am not. :) So I dropped them a line and asked if anyone could jump on that. There is clearly a lot of interest in this library, and it'd be nice to get them some attention going forward. My suggestions are two-fold: If anyone can pull of some nice filters for the library, I'd encourage you to offer your help. As one of the only things that I feel are really missing from Silverlight, the impact could be enormous. Impact yields more use, yields higher adoption rate, yields more employed .NET developers. I've already mentioned this to some speakers for Mix in March... so can we get the library in a demo? I think one of the key to Silverlight's succes is without question the contributions of the developer community. This is a platform that, the more I use it, I feel can change how we approach development, especially in the line-of-business and rich app realms. What can we do to help these guys out? | Go |
| Custom ASP.NET Server Controls and Language Localization ... One of the products my company sells is an ASP.NET server control called SmartChart that generates OrgCharts from hierarchical data sources. Up until recently the vast majority of our sales were to companies in the US so we never worried much about language localization support. In the back of my mind I always knew we’d need to get to that, but always put it at the bottom of the feature list since it wasn’t overly exciting. A few days ago we had a customer from France contact us and mention that they really needed to localize some of the strings we display in the control such as Edit, Delete, Insert into other languages for their clients. I decided it was time to make the update. There are a lot of articles on localization so I’m not going to explain the overall concept in this post. Check out the following links if you’re new to the topic and want to know more: http://quickstarts.asp.net/QuickStartv20/aspnet/doc/localization/localization.aspx http://www.west-wind.com/presentations/wwDbResourceProvider/introtolocalization.aspx (excellent article by my good buddy Rick Strahl…he’s created some great localization code) Creating Satellite Assemblies The first solution that I tried to add localization capabilities into the server control was to use the built-in satellite assembly functionality in .NET. I had worked with these in the past so I started with something I knew. Satellite assemblies allow language resources to be deployed separately from an application’s main .dll providing more flexibility. Here are the basic steps to create a satellite assembly: Create a file named Resource.fr-FR.resx and add the appropriate keys and values for the localized strings (French in this case). .resx files can be created by adding a new Resource File item into a project. Add the keys and values into the .resx file. In this case the values would be in French. The keys will always be the same across different language .resx files. Run the following command to create a resources file: resgen Resource.fr-FR.resources Run the following command to create a satellite assembly from the .resources file: al /t:lib /embed:Resource.fr-FR.resources,SmartWebControls.Localization.Resource.fr-FR.resources /culture:fr-FR /out:SmartWebControls.SmartChart.resources.dll Create a folder under your Website's bin named fr-FR (the folder is named after the target culture) Copy SmartWebControls.SmartChart.resources.dll created in Step 4 into the fr-FR folder Once the satellite assembly is ready you can use .NET’s ResourceManager class to get to individual keys and their associated values based on a specific language culture (English, French, German, etc.). Problem is, the test satellite assembly I created didn’t work even though I knew all of the steps were being followed properly. The localized language strings were never read for some reason. After playing around with it more I realized that the problem was due to strong names. Because the server control assembly was signed with a strong name key file and the satellite wasn’t (the customer would create the satellite assembly and we weren’t going to give out our strong name key file to be used for signing) it wouldn’t work properly. Turns out that both the satellite assembly and the main application assembly have to signed by the same key…which makes sense. After figuring out the problem I realized that satellite assemblies weren’t going to get the job done in this case. On to some other more simple options…. Using HttpContext.GetGlobalResourceObject I considered building my own resource solution specific to my control but after thinking through the options more I realized that the simplest solution would be to leverage the HttpContext object’s static GetGlobalResourceObject method along with ASP.NET’s support for .resx files. GetGlobalResourceObject allows you to pass in t | Go |
| Refactoring: delete unneeded code ... It is not a miracle that during coding developers produce code that is later not needed anymore. It is also not a miracle that unneeded code will stay in project files waiting for the day when somebody finds this code useful (again). But this far this code is just sitting there and causing problems to people who look at these modules first time. Let’s look at the following code. public class Invoice { private IList< InvoiceLine> _lines; ... public decimal Sum( ) { decimal sum = 0 ; foreach ( InvoiceLine line in _lines) { decimal lineSum = line.CalculateTotal ( ) ; // lineSum = lineSum * (1 - lineSum.Discount) // lineSum = lineSum * 1.12 // lineSum = lineSum * 1.01 sum += lineSum; } // sum = sum * 1.12 // sum = sum * 1.01 return sum; } public void ValidateInvoice( ) { if ( _lines.Count == 0 ) throw new Exception( "Invoice body cannot be empty!" ) ; if ( _lines == null ) throw new Exception( "Invoice lines collection is null" ) ; } } This code has some things I don’t like. And I think these things doesn’t like also to other developers who have to work with this code. The code is hard to read. Tracing working code between uncommented blocks is not fun. It makes code hard to read and it is almost sure that one day somebody has to waste his or her valuable time to crawl through this horror. Somebody may get wrong directions from commented code. It may easily happen to somebody new who reads the code to understand how this part of system is working. “Dirty code” like this may contain references to erroneous solution but there is no comment telling us why this code is like it is and how safe it is to use. Somebody may want to update and use commented code. Newcomers may also want to use that code if they have idea how to modify it. But this code may have deeper problems than they know. It is better to avoid confusing elements in code. How do I know why this code is here? We can see no comments or explanations about why this code is here. If it is workaround to some problem and this code is there so everybody can use it in the case of emergency then this code needs comments. It must be clear that this code can be used and it is safe to use. Now there is one more problem. The last method in our example class is not used. But it is there and it has very sweet name. It like says to us that this method must be used somewhere. If somebody starts debugging this class then he or she may try to use this method to get correct results. So it is better to remove this method if it is not used. As a last thing let’s look at our class when we have removed all the waste. public class Invoice { private IList< InvoiceLine> _lines; ... | Go |
| Cloud Computing User Group – Dallas Meeting #1 ... It feels great to get back in action like when I was always running the Dallas C# SIG. Now I'm helping Mike Holdorf and Rob Vettor run the CCUG in Dallas. The first meeting is finally here (tomorrow). This invite says it all.
Don't miss the opportunity to be at the first local meeting of the Cloud Computing User Group .
Windows Azure is Microsoft's cloud computing platform. At this meeting, you'll hear about Microsoft's vision of Software + Services and what it can mean for you. As part of this presentation, you'll see a demo of how a cloud application is developed and deployed.
January 21, 2009 from 6:00 - 8:00 pm
Microsoft Corporation7000 North Highway 161Las Colinas Campus Irving, TX 75039USAMap: http://www.microsoft.com/mscorp/info/usaoffices/southcentral/dallas.asp
Please take a moment to register here so we can plan properly. Pizza will be served at 6:00 and the presentation / demo will begin shortly after.
-Vince | Go |
| javascript:void() will throw a javascript error - you need to use javascript:void(0) ... This is one of those javascript errors that makes me shake my head a bit, but with more and more Ajax style apps being built in Asp.Net, I have started seeing this quite a bit. If you have something like this: <a href="javascript:void()" onclick="doMyFunction()">Click Here</a> It will throw the following javascript error (in Firefox, at least). The solution is to ALWAYS pass the void function a 0 - like this: <a href="javascript:void(0)" onclick="doMyFunction()">Click Here</a> More later - joel | Go |
| Extension Method Guidelines ... I'm spending some time this morning getting caught up on RSS reading. A great post from last week from Brad Abrams on when you should use extension methods – i.e. when they are a good choice. As Brad Abrams points out: "While this a very powerful new feature, it does come with some new responsibility." Technorati Tags: .NET ,Extension Methods | Go |
| Opening an ASP.NET MVC project without having ASP.NET MVC installed: The project type is not supported by this installation ... Projects built with ASP.NET MVC are what are known as "flavored projects ." This means that instead of being an entirely new project type, ASP.NET MVC projects merely extend a different kind of existing project type. Specifically, the projects extend the Web Application Project type. If you try to open a flavored project and don't have that particular flavored project system installed, you get to see this little slice of heaven: If you select "OK" then Visual Studio will continue, but the project will not be loaded: Well, then, what do you do to continue? All you have to do is edit the project file to remove the flavoring. Right-click on the project, and select "Edit MyProjectName.vbproj". This will launch Visual Studio's project file editor (with Intellisense, in case you didn't know!). Towards the top you'll see a list of project types associated with this project, each one represented by a GUID . < ProjectTypeGuids > {603c0e0b-db56-11dc-be95-000d561079b0};{349c5851-65df-11da-9384-00065b846f21};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ ProjectTypeGuids >
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
The first GUID there (the one that starts with "603c") is the one used by ASP.NET MVC projects. Remove that GUID so you end up with:
< ProjectTypeGuids > {349c5851-65df-11da-9384-00065b846f21};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ ProjectTypeGuids >
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
Save the project file and close it.
Now reload the project:
And you'll be able to work on the project once again. The only thing you won't be able to use is MVC project-specific features such as the "Add View" menu option.
I find myself doing this very often since my work machine is always in a bizarre state with respect to ASP.NET MVC and I often don't have the project type installed. This is much faster than trying to install MVC just so I can inspect a project. | Go |