mvc

MVC2 how is <%: tag different to <%=

Hi there , what is the difference between <%: and <%= ? ...

MVC2 VS custom built framework

We are planning to start a new Sale Management System which will have about 12 subsystem. We will use MSSQL2008 as a database. We have got custom framework for ASP.NET that was built about 3 years ago which is not MVC type... And i am planning to move to MVC2 Framework. My Questions are What will be the big advantages of moving to MVC...

MVC2, EF4, layers, STE and validation

I see that most of people interested in EF4 are MVC developers. So; for a MVC2 medium application that implements DDD (Interfaces, Repositories, Services, Entities and IoC): Do you recomend separating the different concerns in layers and using Self Tracking Entities? (here I know that ObjectChangeTracker is not being used but I don't f...

Understanding DAOs place in an MVC Java Web App

I'm using the (slightly dated) links below as a guide to learning and understanding proper use of DAOs in my web apps. http://balusc.blogspot.com/2008/07/dao-tutorial-data-layer.html http://balusc.blogspot.com/2008/07/dao-tutorial-use-in-jspservlet.html Generally speaking, is it correct to initialize a DAO in the INIT() method of a Se...

Unity 2.0 Web.config settings with MVC

Hello, I am trying to use Unity 2.0 for my current project with MVC and having trouble configuring paramter injection in the web.config file. Here's what I have: 1) A Home Controller: public class HomeController : Controller { IRepository repository = null; public HomeController() { // Always calls this constructo...

Passing HTML Attributes and [DisplayFormat] using Html.EditorFor and Html.TextBox

I am trying to use Html.EditorFor for a value where I need both a DisplayFormat attribute and an HTML attribute (specfically a CSS class) to be applied. Html.TextBox ignores the DisplayFormat attribute, and Html.EditorFor will not let me pass Html attributes. Other than writing the HTML myself, what is the preferred solution here? ...

Is MVC simply a concept or is there more to it?

I'm learning about MVC and am wondering if there is more to it other than the concept of view->control->model? What is ASP.NET's MVC, is it again just the method of splitting front end, processing and data up - as with the general idea of MVC? ...

Why should I use MVC in a php website?

Many frameworks are based on mvc, but I have no idea about MVC. So what is the use of MVC? Is it for speed, security or any other reason? ...

Spring MVC - Session - Request

I have a Spring MVC (3) Controller and I trying to put in the annotations but failed Heres my code outline @Controller public class SpringController{ @RequestMapping("/welcome") public String myHandler(@RequestParam("id" String id)){ //My RequestParm is able to do the job of request.getParameter("id") HttpSession session = request...

Dynamically checking each KeyValuePair value of a model

I have a view model like so that is created from my validator. public class ViewModel { public KeyValuePair<int, RuleType> Foo { get; set; } public KeyValuePair<string, RuleType> Bar { get; set; } } My real view model has 20+ field. Once my data is validated a generic list of type ViewModel is then returned to my MVC view and...

URL design technique

My friend designed url tag like : www.aaaa.com/?page=4 in my asp.net mvc2 project, But i want to change my URL like www.aaaa.com/4 so i want to delete ?page tags from my URL. What can i do ? Thanks ...

What's the best way to reverse communicate between view controllers?

I've been thinking about this and have read through another stackoverflow question regarding the best recommended way to communicate between view controllers. However, the question/answer for that doesn't seem to address the best approach for the reverse behavior. i.e. to pass data from ParentController to its ModalController, we could ...

cakePHP: Why are my model associations not working as a plugin?

I have a relationship as follows. Game -> hasMany Highscores Highscore -> belongsTo Games, Users When I run the MVC files standalone (within their respective places in the app dir), I get all belongsTo data associated with Highscores. However, when I run the same MVC files as a plugin, within the plugin dir, these associations are l...

.net mvc2 custom HtmlHelper extension unit testing

My goal is to be able to unit test some custom HtmlHelper extensions - which use RenderPartial internally. http://ox.no/posts/mocking-htmlhelper-in-asp-net-mvc-2-and-3-using-moq I've tried using the method above to mock the HtmlHelper. However, I'm running into Null value exceptions. "Parameter name: view" Anyone have any idea?? Tha...

Where to put animation code?

Animations are a strange mix of view and control, and they sometimes need to be synchronized with delays between them, callback to code, etc. So, without being specific to any particular GUI framework, where should I put my animation code in a MVC architecture? ...

beforFilter in codeIgniter

What is the best way to do and equivalent to CakePHP's beforeFilter() in codeIgniter ...

Linq query Join objects with different data sources?

I am trying to join two objects, the first is a (static) local object defined in a Helper and the second (Subsonic) Database object. Here is the offending extract from my repository, I wont bore you with the models and helpers unless requested. public IQueryable GetData(string DataType) { IQueryable<DatabaseObject> dat...

Calling a view "mid-script" with Codeigniter...can it be done?

I'm using the Codeigniter framework and have tried to stick with the MVC philosophy as best I can. I've recently run into an issue that I'm not entirely sure how to handle. I have a PHP script running that takes a fairly long time (creating an index for my search engine). What I want to do is have the html show up as it's running. If ...

Design Patterns: How would you describe the MVC model?

Ok, I need to give some attributes to describe what MVC model means for a developer. And the only word that hits for the moment it's modularization (separation). And the funny thing is that I need to give some adjectives, not nouns. :| Any help? :) ...

An Ajax accordion pattern in MVC

Hi, I am wandering what pattern to use for an area in my website that has several sub headings, which corresponding models. Say this is several parts of user data, which I have in several tables - like the ASP membership user table, a table with additional user information, and a table which may have several items to show for each user...