|
|
DNK has a spanking new server up and running like clockwork. Stability problems are a thing of the past. Our new monitoring service reports 100% uptime since the move!
Stories recently tagged with 'ASPNETMVC'
|
|
submitted by
crpietschmann
1 day, 6 hours ago
stackoverflow.com — I'm using jQuery to make an Ajax call using an Http Post in ASP.NET MVC. I would like to be able to pass a Dictionary of values. I finally figured out the best solution is to pass JSON via the Http Post and use a custom ModelBinder to convert the JSON to a Dictionary. One thing I did in my solution is created a JsonDictionary object that inherits from Dictionary so that I can attach the custom ModelBinder to the JsonDictionary type, and it wont cause any conflicts in the future if I use Dictionary as a ActionResult parameter later on for a different purpose than JSON. read more...
add a comment
|
category: MVC | Views: 4
|
|
tags:
jQuery, ASPNETMVC, ActionResult, Dictionary, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 days, 13 hours ago, submitted by
maartenba
2 days, 17 hours ago
blog.maartenballiauw.be — “Once upon a time, Microsoft started a Windows Azure developing contest named new CloudApp();. While it first was only available for US candidates, the contest was opened for international submissions too. Knight Maarten The Brave Coffeedrinker and his fellow knightsmen at RealDolmen decided to submit a small sample application that could be hosted in an unknown environment, known by the digital villagers as “the cloud”. The application was called TwitterMatic, named after the great god of social networking, Twitter. It would allow digital villagers to tell the latest stories, even when they were asleep or busy working.” read more...
add a comment
|
category: Azure | Views: 141
|
|
tags:
Azure, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 days, 8 hours ago, submitted by
bengtbe
2 days, 20 hours ago
bengtbe.com — When looking at ASP.NET MVC examples on the web almost all action methods return ActionResult, even methods that could return a specific subclass... read more...
2 comments
|
category: ASP.NET | Views: 210
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 days, 14 hours ago, submitted by
crpietschmann
5 days, 3 hours ago
software.herbrandson.com — One of the things that I really like about the MVC framework is that it offers some unique possibilities when it comes to third parties developing entire sub-systems that can easily be plugged into existing applications. Recently, I had some “down time” at my work and decided to take the opportunity to experiment with doing just that. Here are the results of that experiment. OpenForum is a forum that can easily be plugged into any MVC application with very little effort. In fact, there are only three steps to get OpenForum working with most MVC applications. read more...
add a comment
|
category: MVC | Views: 270
|
|
tags:
ASPNETMVC, MVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
goneale
9 days, 19 hours ago
goneale.com — I just wanted to do a “refresher” post regarding ASP.NET MVC validation as many things have changed over the last couple of months and there is a lot of information out there. I wanted to aggregate my known validation options and recommend them in one tabular list. read more...
add a comment
|
category: MVC | Views: 23
|
|
tags:
MVC, ASPNETMVC, .Net, ASP.NET, Validation | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
developmentalmadness
10 days, 10 hours ago
developmentalmadness.blogspot.com — When deciding on your ASP.NET development platform I recently read a recommendation that boiled down to: application? WebForms. Web site? MVC. MVC isn't just for creating SEO/RESTful web sites. It's a full fledged application platform with everything you need. read more...
add a comment
|
category: MVC | Views: 23
|
|
tags:
WebForms, ASPNETMVC, ASP.NET, MVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 10 days, 14 hours ago, submitted by
maartenba
10 days, 18 hours ago
blog.maartenballiauw.be — Ever had a team of developers using your ASP.NET MVC framework? Chances are you have implemented some action filters (i.e. for logging) which should be applied on all controllers in the application. Two ways to do this: kindly ask your developers to add a [Logging] attribute to the controllers they write, or kindly ask to inherit from SomeCustomControllerWithActionsInPlace.
If you have been in this situation, monday mornings, afternoons, tuesdays and other weekdays are in fact days where some developers will forget to do one of the above. This means no logging! Or any other action filters that are executed due to a developer that has not been fed with enough coffee… Wouldn’t it be nice to have a central repository where you can register application-wide action filters? That’s exactly what we are going to do in this blog post. read more...
add a comment
|
category: MVC | Views: 186
|
|
tags:
ASPNETMVC, MVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
alley
11 days, 17 hours ago
jeffreypalermo.com — There has been quite a bit of discussion about how controllers are really namespaces trying to get out once you use the concept on a nontrivial application.
Brian Donahue’s post on The anti-controller revolution prompted me to do this little experiment. He references some twitter posts by Jimmy Bogard, one of my esteemed consultants at Headspring Systems. Chad Myers also has opined about the notion of more independent actions and has cited precedence. read more...
add a comment
|
category: ASP.NET | Views: 7
|
|
tags:
Controller, ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
pderksen
12 days, 10 hours ago
philderksen.com — How to drag items between categories (sections) and sections between columns using jQuery and ASP.NET MVC. Part 1 focuses on layout and using jQuery UI's sortable functionality. read more...
add a comment
|
category: jQuery | Views: 36
|
|
tags:
jQuery, ASPNETMVC, AJAX, MVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Mikesdotnetting
17 days, 8 hours ago
mikesdotnetting.com — Taking on two new technologies - ASP.NET MVC and the Entity Framework - at the same time was bound to provide some "interesting" moments. Getting data out via EF has so far been pretty straightforward. But when it got to building the back end of my site, I had some fun trying to manage INSERTS with One-To-Many and Many-To-Many relationships. read more...
add a comment
|
category: ASP.NET | Views: 25
|
|
tags:
ASPNETMVC, MVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
maartenba
17 days, 20 hours ago
blog.maartenballiauw.be — A while ago, I did a blog post on combining ASP.NET MVC and MEF (Managed Extensibility Framework), making it possible to “plug” controllers and views into your application as a module. I received a lot of positive feedback as well as a hard question from Dan Swatik who was experiencing a Server Error with this approach… Here’s a better approach to ASP.NET MVC and MEF. read more...
add a comment
|
category: MVC | Views: 25
|
|
tags:
ASPNETMVC, MEF, Extensibility, MVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 24 days, 20 hours ago, submitted by
Jemm
25 days, 10 hours ago
haacked.com — "Today I’m happy to announce that we’re done with the work I described and the installer is now available on CodePlex. Be sure to give it a try as many of the new VS10 features intended to support the TDD workflow fit very nicely with ASP.NET MVC, which ScottGu will describe in an upcoming blog post." read more...
add a comment
|
category: ASP.NET | Views: 78
|
|
tags:
MVC, ASPNETMVC, ASP.NET, VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 25 days, 9 hours ago, submitted by
reperio
25 days, 20 hours ago
mikesdotnetting.com — A Tag Cloud is a visual depiction of Tags or categories on a web site. CSS is used to set the variable font size of each Tag to illustrate its relative frequency or popularity within the site. As part of the migration of my site to ASP.NET MVC, I am introducing one to replace the Categories navigation that appears on the left hand side of each page, which contains a count of items within each category. read more...
add a comment
|
category: ASP.NET | Views: 185
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 25 days, 14 hours ago, submitted by
maartenba
25 days, 23 hours ago
blog.maartenballiauw.be — Hosting and deploying ASP.NET MVC applications on Windows Azure works like a charm. However, if you have been reading my blog for a while, you might have seen that I don’t like the fact that my ASP.NET MVC views are stored in the deployed package as well… Why? If I want to change some text or I made a typo, I would have to re-deploy my entire application for this. Takes a while, application is down during deployment, … And all of that for a typo…
Luckily, Windows Azure also provides blob storage, on which you can host any blob of data (or any file, if you don’t like saying “blob”). These blobs can easily be managed with a tool like Azure Blob Storage Explorer. Now let’s see if we can abuse blob storage for storing the views of an ASP.NET MVC web application, making it easier to modify the text and stuff. We’ll do this by creating a new VirtualPathProvider. read more...
add a comment
|
category: MVC | Views: 106
|
|
tags:
ASPNETMVC, Azure, MVC, BLOB | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 26 days, 7 hours ago, submitted by
reperio
26 days, 22 hours ago
mikesdotnetting.com — According to Google's Webmaster tools, there are about 15,000 incoming links to my site. 13,000 of those reference a .ASPX file on disk. When I convert to MVC, with new Search Engine Friendly urls, all those links will break unless I do something about it. Presenting users with a 404 - file not found is not an option. I need to show them the content they were expecting, and update Search Engines with the news that things have changed. Here's how I will be managing those Legacy URLs. read more...
1 comment
|
category: ASP.NET | Views: 220
|
|
tags:
ASPNETMVC, MVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 26 days, 21 hours ago, submitted by
reperio
1 month, 5 days ago
mikesdotnetting.com — Pretty much every web site on the Internet features a form for users to provide feedback via email to site owners. Migrating to ASP.NET MVC requires a slightly different approach to that used by Web Forms development, so this article looks at one way to implement a web site contact form using the MVC framework and jQuery that degrades nicely. AJAX functionality is said to be "degradable" if a way is provided for the process to work, even though users don't have Javascript available to them. read more...
1 comment
|
category: ASP.NET | Views: 245
|
|
tags:
jQuery, ASPNETMVC, AJAX, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|

|