The asp.net-mvc-3 tag has no wiki summary.
0
votes
0answers
24 views
Does ASP.NET MVC 3 Razor output buffer views?
In ASP.NET MVC 3 Razor, you can specify the page title with:
@{
ViewBag.Title = "Title";
}
Now, suppose we have a layout page with:
<title>@ViewBag.Title | Website</title>
When ...
-1
votes
0answers
31 views
What is a good profiler/logger [preferably aspect orientated]? [closed]
I want to profile my MVC application. I also want to log from it, track exceptions as they bubble up the stack etc all from one place. Someone recommended miniprofiler, but you have to place code ...
3
votes
1answer
227 views
Session Flash vs TempData C# MVC 3
A little background. A developer I used to work with insisted on disabling Tempdata and using Session Flash for passing data in the return view.
Question is, is there any advantage to doing it ...
0
votes
2answers
173 views
Problem with MVC3 application
I am working on MVC3 application. I use entity framework, NInject, Fluent Validation and some more Nuget packages. I am using Tortoise SVN for versioning.
Recently I changed the structure of my SVN ...
0
votes
1answer
134 views
Building Portfolio ASP.Net MVC
I have been working on building a sample application to add to my portfolio (for freelancing). I am working on building a Shopping website using ASP.Net MVC. My question is - what are the good ...
4
votes
4answers
243 views
Javascript client - which is likely to be better serverside? WCF or MVC3 controller with restful messages?
I'm looking to write a server side service, which will be accessed from a Javascript/HTML5 client.
The client will likely be sending a bunch of restful messages over HTTPS.
All other things being ...
3
votes
3answers
483 views
Unit of work principle is causing a problem in MVC3 application
I am implementing a website using MVC3, Entity Framework 4.1 and Repositoty pattern, Unit of work principle. But I am facing a big problem while implementing this.
I have developed a static ...
3
votes
0answers
164 views
Is there a clear choice in ASP.NET MVC3 for preserving data when schemas change using Express/free (as in beer) tools? [closed]
Using SQLEXPRESS, mvc3, wanting to stay with Express editions. I've been working thru
tutorials. I want to incrementally add features that will change DB schema, so I think I'll inevitably have to ...
1
vote
3answers
331 views
Telerik ASP.NET MVC components licensing
There's thread on stackoverflow about this
http://stackoverflow.com/questions/5524046/is-telerik-extensions-for-asp-net-mvc-free
It says that it is ok for internal site, but I think it is still not ...
2
votes
3answers
253 views
My Asp.net MVC is running like a dodo ! Any recommendations
Following is the Url for my website, http://www.price-tag.org . If you visit any category link, you will see it performing very slow. For example, if you visit ...
1
vote
2answers
419 views
Best practice modelling an active record entity using Linq-To-SQL as DAL
Currently I'm starting a new system on my company, and we are using a good separation between models, views and controllers, basically using Asp.Net MVC 3 for the user UI, and a C# class library for ...
24
votes
4answers
621 views
Javascript modularity, server based MVC & business reality
I understand this is a very broad question, but I have worked with various aspects of this problem individually and am struggling to bring all the concepts and technologies together.
I'd like to ...
6
votes
2answers
2k views
Use-cases for node.js and c#
I do quite a bit of ASP.NET work (C#, MVC), but most of it is typical web development. I do Restful architecture using CRUD repositories. Most of my clients don't have a lot of advanced requirements ...
3
votes
2answers
284 views
ASP.NET MVC 3 Blogs to Follow [closed]
What are some good blogs about ASP.NET MVC 3 out there to follow? Anybody know of any?
Thanks in advance.
5
votes
5answers
387 views
Inversion of Control in ASP.NET MVC
I was going to refactor my ASP.NET MVC application and inject some IoC. Last time I was using IoC, Unity was all the rage, but I hated it. It was difficult to setup and had very nondescript errors.
...