| |
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.
|
14 Articles match "Web"
See all articles with
"Web"
| The Latest from Mark's Blog of Random Thoughts | MORE | | MVVM: IUIVisualizer and event management with behaviors There are plenty of resources on the web about these so I won’t go into detail on their creation – check the library source code if you want to see how they work, but using them involves taking a dependency on two assemblies: System.Windows.Interactivity.dll. In this post, we will look at the IUIVisualizer , and bring together some of the concepts we’ve talked about already through a new sample – a simple picture viewer: The application grabs all the images from the user’s photo folder and then displays each one onto the surface of a corkboard. If you look at the App.xaml.cs par ?? Mark's Blog of Random Thoughts - Friday, February 5, 2010 MVVM: Service Locator This model allows the host to decide what the concrete implementation should be – for example in the Workflow world, the system needs to treat output completely differently for a Console App vs. a web application. So, a console host might add a service for output that prints a string to the console window, while a web application might define the same service as a redirection to an output page. In this post, we’ll explore the service locator (called ServiceProvider in the library) and introduce the specific services included with the MVVM Helper library (as of 1.05 anyway). par ?? Mark's Blog of Random Thoughts - Wednesday, January 27, 2010 MVVM Helpers 1.05 released an earlier version of it onto the web and have gotten a lot of comments which has been great, so I am releasing the latest version which has a lot of changes. With this post I am starting a new series - I hope to be more consistent in posting at least once or twice a week. To that end, I am going to focus on the WPF/MVVM helper library I use daily. So, without further ado, here's the code for you to download and play with, this compiles with Visual Studio 2008 SP1 , or with Visual Studio 2010 Beta 2. mvvmhelpers.zip. Read on for the basics of the project structure and files. Mark's Blog of Random Thoughts - Wednesday, January 20, 2010 | | The Best from Mark's Blog of Random Thoughts | MORE | | Handling "Unhandled Exceptions" in.NET 2.0 Description: An unhandled exception occurred during the execution of the current web request. We could put a handler into our global.asax, but that would only handle that one web application. I got hit with this problem from two separate clients last week - a.NET 1.1 application ported to.NET 2.0 is now terminating abruptly for no apparent reason. Well, of course there's a reason - and it's that both applications had "hidden" exceptions being thrown in some background thread that weren't being caught. Under.NET 1.1, Under.NET 2.0, So, for example: class BadClass. {. for (; ;). Mark's Blog of Random Thoughts - Monday, March 13, 2006 Creating a legacy web service proxy in Visual Studio 2008 This happens to be one of the most obviously changed things in Orcas - the dialog presented is a more professional version than what was supplied with the original WCF CTP for VS.2005: The "Discover" button above can locate IIS-hosted web services (not Self Hosted however) and it now shows operations directly which is pretty cool. The bottom section - "Compatibility" allows you to generate a web service proxy using that original WS technology. For those clients, we have no choice but to use legacy web service proxies.NETThe best part is the "Advanced" button though. Mark's Blog of Random Thoughts - Monday, August 13, 2007 MVVM: IUIVisualizer and event management with behaviors There are plenty of resources on the web about these so I won’t go into detail on their creation – check the library source code if you want to see how they work, but using them involves taking a dependency on two assemblies: System.Windows.Interactivity.dll. In this post, we will look at the IUIVisualizer , and bring together some of the concepts we’ve talked about already through a new sample – a simple picture viewer: The application grabs all the images from the user’s photo folder and then displays each one onto the surface of a corkboard. If you look at the App.xaml.cs par ?? Mark's Blog of Random Thoughts - Friday, February 5, 2010 | - MVVM: Service Locator
This model allows the host to decide what the concrete implementation should be – for example in the Workflow world, the system needs to treat output completely differently for a Console App vs. a web application. So, a console host might add a service for output that prints a string to the console window, while a web application might define the same service as a redirection to an output page. In this post, we’ll explore the service locator (called ServiceProvider in the library) and introduce the specific services included with the MVVM Helper library (as of 1.05 anyway). par ?? Mark's Blog of Random Thoughts - Wednesday, January 27, 2010 - Handling "Unhandled Exceptions" in.NET 2.0
Description: An unhandled exception occurred during the execution of the current web request. We could put a handler into our global.asax, but that would only handle that one web application. I got hit with this problem from two separate clients last week - a.NET 1.1 application ported to.NET 2.0 is now terminating abruptly for no apparent reason. Well, of course there's a reason - and it's that both applications had "hidden" exceptions being thrown in some background thread that weren't being caught. Under.NET 1.1, Under.NET 2.0, So, for example: class BadClass. {. for (; ;). - Moving Work Items from one Team Project to another
This application does a couple of other things as well - lists projects, active web services, etc. ListServices - Displays the web services exposed by the TF server. Listing the web services just hits the underlying database to get the information: C:WorkTfsCmd> tfscmd ListServices. I was having lunch with an associate a while back and he mentioned a need to move a work item from one team project to another. hadn't actually looked at the schema mind you, I'm an optimist. So, I spent a week or so looking at the schema for the Work Item system and a lot of trial and error. - SOS: finding the method bound to an EventHandler with WinDbg.
run the web page a few times, noted my working set going up and never coming back down. I was preparing a sample memory leak application for an Advanced C# class at Microsoft this past week and debugging through it with SOS.DLL ("Son of Strike"). My prepared application was an ASP.NET application that would leak memory by holding references to the page objects after they had completed their work. did this by having the page hook up an event handler to a global event and then never remove the handler. But as I said, this was a sample. load sos 0:000> !DumpHeap DumpHeap -mt 0548cbd4. - Creating a legacy web service proxy in Visual Studio 2008
This happens to be one of the most obviously changed things in Orcas - the dialog presented is a more professional version than what was supplied with the original WCF CTP for VS.2005: The "Discover" button above can locate IIS-hosted web services (not Self Hosted however) and it now shows operations directly which is pretty cool. The bottom section - "Compatibility" allows you to generate a web service proxy using that original WS technology. For those clients, we have no choice but to use legacy web service proxies. The best part is the "Advanced" button though. - Christmas comes early: Microsoft releases Visual Studio.NET 2008
8: ClickOnce improvements Microsoft introduced a simplified way to deploy Windows Forms clients from the web with Visual Studio 2005 called ClickOnce. Web developers benefit from this release too - Visual Studio now has intellisense and code completion support for JavaScript! After a long beta period Microsoft pushed Visual Studio.NET 2008 (code named “Orcas”) out to MSDN in November - keeping their promise to deliver it by the end of the year. We’ve been using Orcas in many of our.NET classes for a while now and I for one, am pretty excited that it’s finally here. SP1, 3.0 Mark's Blog of Random Thoughts - Wednesday, December 19, 2007 - MVVM Helpers 1.05
released an earlier version of it onto the web and have gotten a lot of comments which has been great, so I am releasing the latest version which has a lot of changes. With this post I am starting a new series - I hope to be more consistent in posting at least once or twice a week. To that end, I am going to focus on the WPF/MVVM helper library I use daily. So, without further ado, here's the code for you to download and play with, this compiles with Visual Studio 2008 SP1 , or with Visual Studio 2010 Beta 2. mvvmhelpers.zip. Read on for the basics of the project structure and files. Mark's Blog of Random Thoughts - Wednesday, January 20, 2010 %>
398 Articles match "Web"
See all articles with
"Web"
| The Latest from DevelopMentor | MORE | | Reblogged: What should I learn to get started in.NET and web development? The question they had was: What should I learn to get started in.NET and web development? Now this question was starting from a position of “I’d like to get started with.NET and the web. To go from “ zero to web dev in.NET” I think you should start on these topics, in an iterative fashion: Fundamentals of C# (skip the advanced stuff – async, yield return, etc for now). '[ Note : I am reblogging this post which originally was posted to the LearningLine blog. Hope you all find it useful here as well]. How do I do that?” jQuery basics. Michael C. Kennedy's Weblog - Monday, May 6, 2013 Agile Clinic: Dear Allan, we have a little problem with Agile. The sender has graciously agreed to let me share the mail and my advice with you, all anonymously of course… The sender is new to the team, new to the company, they are developing a custom web app for a client, i.e. they are an ESP or consultancy. 'Consider this blog an Agile Clinic. On Friday an e-mail dropped into my mailbox asking if I could help. the Developers work in sprints, estimating tasks in JIRA as they go. Sprints last three weeks, including planning, development and testing. have been tasked to produce burndowns to keep track of how the Dev cells are doing.” Perhaps both. Allan Kelly's Blog - Sunday, April 28, 2013 A Roundup of MongoDB Management Tools Now there is one less worry in managing your web-scale data. Installs into your web app (provided you’re using Ruby or PHP). My take : This is a very interesting web monitoring app. Designed with security and ease of use, MMS collects statistics on all key server and hardware indicators and then presents the data in a powerful web console. 'I’ve been working with MongoDB for a long time now. Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. SQL Server Management Studio ). The news is good. link]. Admin GUI). Michael C. Kennedy's Weblog - Monday, April 22, 2013 | -
| The Best from DevelopMentor | MORE | - Improve perceived performance of ASP.NET MVC websites with asynchronous partial views
Now, you web app is mostly fast and responsive, but there are certain types of data that just bring the whole thing to a grind. Filed under: Articles Tagged: NET , Articles , ASP.NET , jQuery , MVC , web. Articles.NET ASP.NET jQuery MVC webImagine you’re building an ASP.NET MVC website which has some performance problems. m sure this would never actually happen to you, but imagine you’re facing this problem just for the sake of exploring the possibilities. :-). First a disclaimer / warning. m going to show you how to make your site feel faster without speeding it up. Michael C. Kennedy's Weblog - Tuesday, November 13, 2012 - Understanding Text Encoding in ASP.NET MVC (ASP.NET MVC Foundations Series)
For example, if you were writing a forum web app, you should absolutely be paranoid about what your users are typing into your site. Filed under: Articles Tagged: NET , Foundations , MVC , web. Articles.NET Foundations MVC webThis article covers the various ways in which you might handle text encoding in ASP.NET MVC. You need to be very careful about how you redisplay their input. For example, a friendly forum user might write something like: Nice post, thanks for sharing! On the other hand, they may write: <script src=”[link]. CMS app with rich text editing. Michael C. Kennedy's Weblog - Monday, October 15, 2012 - Download My Web Apps Have HotKeys Too Sample App
I recently blogged about how web apps have hotkeys too. To encourage more developers to add hotkeys to their web applications, I created a jQuery plugin called jQuery.hotKeyMap.js It’s an ASP.NET MVC 3 web app. Filed under: jQuery Tagged: NET , ASP.NET , MVC , Open Source , Plugins , web. jQuery.NET ASP.NET MVC Open Source Plugins weband a sample application. just added a download link for the source code: WebAppsHaveHotKeysTooSample-MichaelKennedy-v1.zip. Hope you find it useful! Cheers, @mkennedy. Michael C. Kennedy's Weblog - Thursday, August 30, 2012 - How Are You Scaling ASP.NET?
Cheers, @mkennedy Filed … Continue reading → Polls.NET ASP.NET MVC polls webThere are some interesting debates out there around scaling ASP.NET. How do you do it? Please fill out this poll and tell the world: Interested in a blog post on this? Take it to the comments section. - Slides and demos from DevWeek 2013
18 Ways Your Brand-New MVC Web Application Can Be Better. Filed under: Speaking Tagged: NET , ASP.NET , Cloud , Conferences , DevelopMentor , jQuery , LearningLine , Speaking , tips , web. Speaking.NET ASP.NET Cloud Conferences DevelopMentor jQuery LearningLine tips webI had a great time discussing these topics with everyone at DevWeek 2013. Thanks to all who attended my sessions. Here are the slides: Getting Serious About The Cloud For Developers. Building Rich Forms in ASP.NET MVC. Applied NoSQL in.NET. Watch this space for the demo code as well. Cheers, @mkennedy. %>
| | |