active questions tagged mvc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T11:14:25Zhttp://stackoverflow.com/feeds/tag/mvchttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1890878/whats-the-difference-between-a-viewmodel-and-controller2What's the difference between a ViewModel and Controller?MedicineMan2009-12-11T21:07:52Z2009-12-12T11:10:09Z
<p>What are the responsibilities of one vs the other?
What kind of logic should go in one vs the other?
Which one hits services and databases?
How do I decide if my code should go in the viewmodel or the controller?</p>
<p>For the record, I am using ASP MVC, but since the question is architectural, I do not believe it matters what language or framework I am using. I'm inviting all MVC to respond</p>
http://stackoverflow.com/questions/1866044/how-to-run-multiple-versions-of-symfony-php-framework0How to run multiple versions of Symfony PHP FrameworkJon Winstanley2009-12-08T10:20:56Z2009-12-11T12:46:27Z
<p>I have several web projects built with Symfony v1.0, but I am excited by the new features in Symfony version 1.4 (Improved security, native email support and improved performance).</p>
<p>How can I continue to develop my 1.0 projects but also create a testing environment for version 1.4?</p>
http://stackoverflow.com/questions/1882170/in-mvc-2-how-to-bind-a-html-textbox-to-a-model-property0In MVC 2, how to bind a Html.TextBox to a Model propertyJoe2009-12-10T16:20:50Z2009-12-11T11:52:34Z
<p>My model has a property of "output" and my form has a TextBox named "output", both spelled exactly the same. When I fill out the form and post it, the returning view has unexpected results.</p>
<p>Specifically, I receive the posted "output" form variable which is then bound to my Model in the Controller Method, then I change this variable to a different value before I pass the Model back to the view.</p>
<p>the posted output property is "one thing"
my Model property is set to "another"</p>
<p>I have this in my code: <code><%= Html.TextBox("output") %></code></p>
<p>Which renders to this: <code><input id="output" name="output" type="text" value="one thing" /></code></p>
<p>However, when debugging, the Model <em>does</em> contain the correct value ("another").</p>
<p>Its using the posted value rather than the value assigned in the controller. Any ideas why and how to fix it?</p>
http://stackoverflow.com/questions/1887057/does-installing-asp-net-mvc-require-a-server-reboot0Does installing ASP.NET MVC require a server reboot?Sebastian2009-12-11T10:09:08Z2009-12-11T10:31:22Z
<p>Does installing ASP.NET MVC <strong>require a server reboot?</strong></p>
<p>I've set up quite a few ASP.NET MVC sites on production servers in my time, but today, I'm deploying to a server without MVC installed for the first time.</p>
<p>So, I installed the latest MVC release, restarted the IIS and went through the usual hoops to set up a MVC website on IIS6 (aspnet_isapi.dll, setting the correct .NET version, etc).</p>
<p>However, the site behaves exactly like a non-MVC website. The root url clearly maps to default.aspx, but any controller/action urls all result in a 404. </p>
<p>I've had two colleagues check the site configuration, both giving thumbs up.</p>
<p>I won't reboot the server without a very good reason.
Does any of you know, whether I <strong>need</strong> to reboot after installation of ASP.NET MVC?</p>
http://stackoverflow.com/questions/1885164/asp-net-mvc-linq-problem0asp.net mvc linq problemDanki2009-12-11T00:54:15Z2009-12-11T08:19:20Z
<p>when i pass a an Entityset type to the model
the model has correct data but i get the error</p>
<blockquote>
<p>Description: An unhandled exception
occurred during the execution of the
current web request. Please review the
stack trace for more information about
the error and where it originated in
the code. </p>
<p>Exception Details:
System.Security.VerificationException:
<strong>Operation could destabilize the
runtime.</strong></p>
<p>Source Error: </p>
<p><% foreach (var item in Model.AsQueryable()) { %></p>
</blockquote>
<p>i tryed </p>
<blockquote>
<p><% foreach (var item in Model.AsQueryable()) { %></p>
</blockquote>
<p>but i had know luck</p>
<p>what wrong?</p>
<blockquote>
<p>VerificationException: Operation could
destabilize the runtime.]
Read_Department(ObjectMaterializer1 )
+921 System.Data.Linq.SqlClient.ObjectReader2.MoveNext()
+29 System.Data.Linq.EntitySet1.Load() +244 System.Data.Linq.EntitySet1.GetEnumerator()
+13 System.Linq.EnumerableQuery1.GetEnumerator()
+219 System.Linq.EnumerableQuery1.System.Collections.Generic.IEnumerable.GetEnumerator()
+4 ASP.views_department_list_ascx.__Render__control1(HtmlTextWriter
__w, Control parameterContainer) in c:\trunk\WebUI\Views\Department\List.ascx:20
System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter
writer, ICollection children) +256
System.Web.UI.Control.RenderChildren(HtmlTextWriter
writer) +19
System.Web.UI.Control.Render(HtmlTextWriter
writer) +10
System.Web.UI.Control.RenderControlInternal(HtmlTextWriter
writer, ControlAdapter adapter) +27
System.Web.UI.Control.RenderControl(HtmlTextWriter
writer, ControlAdapter adapter) +99
System.Web.UI.Control.RenderControl(HtmlTextWriter
writer) +25
System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter
writer, ICollection children) +134
System.Web.UI.Control.RenderChildren(HtmlTextWriter
writer) +19
System.Web.UI.Page.Render(HtmlTextWriter
writer) +29
System.Web.Mvc.ViewPage.Render(HtmlTextWriter
writer) +59
System.Web.UI.Control.RenderControlInternal(HtmlTextWriter
writer, ControlAdapter adapter) +27
System.Web.UI.Control.RenderControl(HtmlTextWriter
writer, ControlAdapter adapter) +99
System.Web.UI.Control.RenderControl(HtmlTextWriter
writer) +25
System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean
includeStagesAfterAsyncPoint) +1266</p>
</blockquote>
http://stackoverflow.com/questions/1886163/implemenatations-of-product-hit-counters0implemenatations of product hit countersYgam2009-12-11T06:20:02Z2009-12-11T06:24:27Z
<p>Hi guys! I have been scouring for a while about this one but haven't seen a decent tutorial.</p>
<p>the problem is I want to create a hit counter everytime a product's page is viewed</p>
<p>I am using a PHP MVC framework and these are what I want to do</p>
<ol>
<li>update a database counter everytime a page is visited</li>
<li>check if a the product is repeatedly viewed in the same terminal to avoid multiple viewing from one user</li>
</ol>
<p>How will I go about implementing this?</p>
http://stackoverflow.com/questions/1883692/unit-testing-sqlite-membership-provider-in-mvc-app2Unit Testing Sqlite Membership Provider in MVC appsplatto2009-12-10T20:13:55Z2009-12-11T03:23:24Z
<p>I've created an MVC application and I've set up <a href="http://www.codeproject.com/KB/aspnet/SQLite-Providers.aspx" rel="nofollow">Roger Martin's sqlite Providers</a> in place of the default Providers. I'm curious about how I would go about unit testing these. </p>
<p>Below is a stripped down method that has many validations, only one of which is still present. Among other things, I want to write unit tests that ensures one can't register if the username has been taken, and can register if the username is free (and other validations pass).</p>
<p>I can see how unit tests could determine success or failure, but not failure for a specific reason. Any insight would be very helpful.</p>
<pre><code> public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status)
{
//some validations, and then:
MembershipUser u = GetUser(username, false);
if (u == null)
{
///register user
status = MembershipCreateStatus.Success;
return GetUser(username, false);
}
else
{
status = MembershipCreateStatus.DuplicateUserName;
}
return null;
}
</code></pre>
http://stackoverflow.com/questions/1884493/objects-validating-itself-using-castle-validators0Objects validating itself using Castle Validatorsace2009-12-10T22:20:36Z2009-12-11T01:21:20Z
<p>hi,
I have a Task object which has a property of Employee. Im trying to find the best possible way setting a validation to only allow the certain employees to access the task object. If the current context user (web/winforms) tries to instantiate the Task object the object should automatically validate itself and return a validation error message.
Can you please advise what is the best way of doing this?</p>
<p>im using Fluent nHibernate and Castle Validators and the front end is asp.net MVC.</p>
<pre><code>public class Task:ITask
{
public virtual int TaskID { get; set; }
public virtual TaskStatus TaskStatus { get; set; }
public virtual DateTime? CreatedDateTime { get; set; }
**public virtual Employee CreatedByUser { get; set; }**
}
</code></pre>
http://stackoverflow.com/questions/1882621/asp-net-mvc-and-tinymce1ASP.NET MVC and tinyMCESimon Lomax2009-12-10T17:30:08Z2009-12-11T00:41:29Z
<p>I'm getting some very strange behaviour with tinyMCE in an ASP.NET MVC 2 beta app (same happend with MVC 1). I have a view called "edit.aspx" that is called when the user tries to create or edit an entity. The view uses jquery to load tinyMCE where ever it finds textarea's. </p>
<p>Here are my 2 action methods that both call the same "edit.aspx" view</p>
<p>public ActionResult Create()
{
return View("Edit", new FutureEvent());
}</p>
<p>[HttpGet]
public ActionResult Edit(int id)
{</p>
<pre><code> FutureEvent futureEvent = (from fe in adminGalleryRepository.FutureEvents
where fe.ID == id
select fe).FirstOrDefault();
return View("Edit", futureEvent);
</code></pre>
<p>}</p>
<p>The "Edit.aspx" view:</p>
<p><%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Admin.Master" Inherits="System.Web.Mvc.ViewPage" %></p>
<p>
Future event
</p>
<p></p>
<pre><code><script type="text/javascript">
$(function() {
$("#tabs").tabs();
$('textarea').tinymce({
script_url: '../../Scripts/tiny_mce/tiny_mce.js',
theme: "advanced",
plugins: "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1: "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2: "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3: "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4: "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
theme_advanced_toolbar_location: "top",
theme_advanced_toolbar_align: "left",
theme_advanced_statusbar_location: "bottom",
theme_advanced_resizing: true
});
});
</script>
<h2>Future event</h2>
<%= Html.ValidationSummary("Edit was unsuccessful. Please correct the errors and try again.") %>
<% using (Html.BeginForm("Edit", "FutureEvents")) {%>
<div id="tabs">
<ul>
<li><a href="#tabs-1">Future event</a></li>
</ul>
<div id="tabs-1">
<%= Html.Hidden("ID") %>
<label class="formLabel" for="Title">Title:
<%= Html.ValidationMessage("Title", "*") %>
<%= Html.TextBox("Title", Model.Title, new { size = "40px" })%>
</label>
<label class="formLabel" for="Info">Info:
<br />
<%= Html.TextArea("Info", Model.Info, 15, 130, null) %>
</label>
<br />
<label class="formLabel" for="WebSite">Web site address:
<%= Html.TextBox("WebSite", Model.WebSite, new { size = "40px" })%>
</label>
</div>
</div>
<div class="clear" ></div>
<div id="footer" style="text-align: left">
<input type="submit" value="Save" />
<%=Html.ActionLink("Back to List", "List") %>
</div>
<% } %>
</code></pre>
<p></p>
<p>The strange thing is that the create method renders the "edit" view and the tinyMCE edit appears correctly. But when the edit action method renders the "edit" view, the view appears as you would expect - but <strong>without</strong> the tinyMCE editor. </p>
<p>No errors appear in FireBug, I get exactly the same behaviour in IE.</p>
<p>Anyone got any idea what's going on.</p>
<p>Regards,
Simon</p>
<p>P.S. I also tried removing the $("#tabs").tabs() line but it made no difference.</p>
http://stackoverflow.com/questions/1884385/is-jquery-more-suited-to-asp-net-mvc-than-webforms-or-it-doesnt-matter1Is JQuery more suited to ASP.NET MVC than WebForms or it doesn't matter? Tony_Henrich2009-12-10T22:01:08Z2009-12-10T23:13:41Z
<p>Is JQuery more suited to MVC than WebForms or it doesn't matter?
I am planning to use JQuery heavily. </p>
http://stackoverflow.com/questions/371898/how-does-differential-execution-work9How Does Differential Execution Work?Brian2008-12-16T16:49:50Z2009-12-10T22:54:00Z
<p>I've seen a few mentions of this on SO, but staring at <a href="http://en.wikipedia.org/wiki/Differential_execution" rel="nofollow">Wikipedia</a> and at an <a href="http://sourceforge.net/projects/dyndlgdemo/" rel="nofollow">MFC dynamic dialog demo</a> did nothing to enlighten me. Can someone please explain this? Learning a fundamentally different concept sounds nice.</p>
<p>Edit: I think I'm getting a better feel for it. I guess I just didn't look at the source code carefully enough the first time. I have mixed feelings about DE at this point. On the one hand, it can make certain tasks considerably easier. On the other hand, getting it up and running (i.e. setting it up in your language of choice) is not easy (I'm sure it would be if I understood it better)...though I guess the toolbox for it need only be made once, then expanded as necessary. I think in order to really understand it, I'll probably need to try implimenting it in another language.</p>
http://stackoverflow.com/questions/1876696/when-is-the-mvc-pattern-appropriate2When is the MVC Pattern appropriate?Gurdas Nijor2009-12-09T20:34:41Z2009-12-10T20:16:53Z
<p><em>Note: I'm not referring to any particular framework's interpretation of MVC</em></p>
<p>If I'm designing a rich client Silverlight application for instance, that involves a relatively complex UI behavior such as dragging and dropping rows between two GridViews populated by a dynamic user-defined query, would this be an appropriate pattern to use? </p>
<p>Certain UI behaviors (such as dropping a row on another valid row) would also lead to business rules being applied and the model being updated accordingly. If MVC isn't a good fit for this type of application; what would be a good way to structure this?
<br/>
<hr></p>
<p><br/>
<strong>EDIT:</strong> Re-reading my original question, it seems a bit general; i'll break it down into a more directed question:</p>
<p><br/>
<strong><em>Is there an upper-limit on granularity of user interaction where the MVC pattern is not appropriate?</em></strong></p>
<p>*ie. A UI that would involve a controller action having to handle something on mouse_move, mouse_button_up, etc...*</p>
http://stackoverflow.com/questions/686595/asp-net-mvc-jqueryui-datepicker-not-working-when-using-ajax-beginform1ASP.NET MVC jQueryUI datepicker not working when using AJAX.BeginFormandyJ2009-03-26T16:42:03Z2009-12-10T20:00:02Z
<p>I have an ASP.NET MVC Partial View that contains a Html.TextBox that is configured to use the datepicker from JQueryUI. This is done by ensuring the style is set to .datepicker. This all worked fine. However I have changed my forms to Ajax.BeginForm and included a Ajax.ActionLink that displays it after clicking on the link. Since adding this the datepicker does not display. In fact no JavaScript that previously worked is now even being invoked after a returning a partialview from the controller. Even if i PUT THE JavaScript/JQuery in the partial view itself it still does not use it. I really am confused, can someone please help?</p>
<p>Examples shown below</p>
<pre><code><div id="claims">
<div id="divViewClaims">
<% Html.RenderPartial("ViewClaim", Model.Claims ?? null); %>
</div>
<br /><br />
<div id="claim">
<% Html.RenderPartial("AddEditClaim", new Claim()); %>
</div>
</div>
</code></pre>
<p>Action Link, when clickon calls Controller Action to return PartialView, The JavaScript called on the OnSuccess fires but nothing else, that previously was hooked up by the document.ready function. All my scripts are in seperate files and referenced in master page.</p>
<pre><code><%= Ajax.ActionLink(string.Format("Add A{0} Claim", Model.Count > 0 ? "nother" : string.Empty), "AddClaim", "Driver", new AjaxOptions { HttpMethod = "GET", UpdateTargetId = "claim", OnSuccess="showAddClaim" }, new { @class = "ControlLink" })%>
</code></pre>
<p>Controller Action</p>
<pre><code>public ActionResult AddClaim()
{
return PartialView("AddEditClaim", new Claim());
}
</code></pre>
<p>Partial View, which shows the textbox with the style set to datepicker</p>
<pre><code><% var ajaxOptions = new AjaxOptions { HttpMethod = "POST", UpdateTargetId = "divViewClaims", InsertionMode = InsertionMode.Replace, OnSuccess="hideAddClaim" }; %>
<% using (Ajax.BeginForm("AddEditClaim", "Claim", ajaxOptions, new { @name = "ClaimControl", @id = "ClaimControl" }))
{ %>
<fieldset>
<legend><%= Model.Id==0?"Add":"Edit" %> Claim</legend>
<p>
<label for="Title">Claim Date</label>
<%= Html.TextBox("Date", Model.Date.ToString().TrimEnd('0', ':', ' ') ?? "", new { @class = "datepicker" })%>
</p>
</code></pre>
<p>I appreciate any help on this.</p>
http://stackoverflow.com/questions/1883323/mvc-controller-jobs0MVC controller jobs?johnnietheblack2009-12-10T19:21:15Z2009-12-10T19:38:31Z
<p>My MVC controller is in charge of passing desired onload javascript to my view object which inserts it into the bottom of my main page template.</p>
<p>My question is...should I store the actual onload js scripting in my controller, or should i store it in my model, and have the controller pull it from there?</p>
<p>My confusion is rooted in the fact that its not really business logic...</p>
<p>Option 1:</p>
<pre><code>/* --- js store in my controller --- */
$page->add_js_onload('various jquery scripting');
</code></pre>
<p>Option 2:</p>
<pre><code>/* --- js fetched from my model --- */
$page->add_js_onload($this->model->fetch_onload_js());
</code></pre>
<p>Which is cleaner and more scalable (or just more elegant)?</p>
http://stackoverflow.com/questions/1882908/how-to-pre-process-a-php-mvc-view-without-using-the-framework0how to pre-process a PHP MVC view without using the framework?Tony2009-12-10T18:10:10Z2009-12-10T18:20:09Z
<p>Is there any way I can pre-process a PHP view script without using a particular MVC framework?</p>
<p>Basically I want to render the view and pass it as an HTML string to another view. The view I'm trying to render has some references like $this->rows, and, of course, I would need to add the values of those references to the script before generating the HTML.</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/1881571/php-mvc-fetching-the-view1PHP - MVC - Fetching the viewDeaconDesperado2009-12-10T15:04:59Z2009-12-10T15:34:10Z
<p>Greetings all!</p>
<p>Looking for some help with MVC in a PHP context. Currently I am building a small, lightweight MVC framework to help expedite application development at work. It's a long hard separation eliminating inline code - at least with numerous projects looming overhead and the temptation to utilize it ever-present.</p>
<p>I understand most of the basic requirements of MVC, and I've already begun porting some of my existing classes that are in Singleton pattern over as utilities in my new framework (these are mostly basic 'handlers' to perform site services - a class for file uploads, authorization, wrapped PDO database queries, error printing etc.) </p>
<p>What I can't seem to grasp moving forward after reading much documentation is the best approach to instantiating views. In my old, inefficient design I would switch off a $_GET variable to switch ouput from within the home view. Just going off intuition, this seems like an extremely bad way of getting the job done.</p>
<p>I've looking into CodeIgniter, and it would seem that there are predefined functions for loading views within that framework. What is the best approach to such an application design? Would it be a class based 'link factory' that utilizes the same variables to fetch content, select the proper view file, and place it in the page flow? Also, how could the new view be included between the header and footer includes in the root index without using switches? This is the only thing really confusing me - I really hope I have worded myself clearly enough.</p>
<p>Thanks all as ever!</p>
http://stackoverflow.com/questions/1830376/using-spring-net-to-inject-dependencies-into-asp-net-mvc-actionfilters1Using Spring.Net to inject dependencies into ASP.NET MVC ActionFiltersJack2009-12-02T02:51:35Z2009-12-10T15:02:45Z
<p>I'm using MvcContrib to do my Spring.Net ASP.Net MVC controller dependency injection.
My dependencies are not being injected into my CustomAttribute action filter.
How to I get my dependencies into it?</p>
<p>Say you have an ActionFilter that looks like so:
public class CustomAttribute : ActionFilterAttribute, ICustomAttribute
{
private IAwesomeService awesomeService;</p>
<pre><code>public CustomAttribute(){}
public CustomAttribute(IAwesomeService awesomeService)
{
this.awesomeService= awesomeService;
}
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
//Do some work
}
</code></pre>
<p>}</p>
<p>With a Spring.Net configuration section that looks like so:
</p>
<p>And you use the Attribute like so:
[Custom]
public FooController : Controller
{
//Do some work
}</p>
http://stackoverflow.com/questions/1880976/recommended-books-about-php-mvc0Recommended books about PHP MVCshin2009-12-10T13:29:54Z2009-12-10T14:58:51Z
<p>Can you recommend books to learn about PHP MVC please?</p>
<p>Thanks everyone.</p>
http://stackoverflow.com/questions/1877368/ajax-actionlink-output-with-id-attribute0Ajax.Actionlink output with id attributecer2009-12-09T22:26:29Z2009-12-10T14:28:09Z
<p>Hi everyone,</p>
<p>I'm using the Ajax.Actionlink from the MVC framework and everything works fine with my targets and partial views. However I've seen that the html output doesn't add the "id" attribute to the resulting tag.</p>
<p>Is there any way how I can add it?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1880216/mvc-model-to-view-event-dispatch-implementation1MVC Model to View event dispatch implementationClaudio2009-12-10T10:57:16Z2009-12-10T11:32:41Z
<p>The MVC pattern wants that Model dispatches change status events to View.
Which is the best implementation of this comunication if the Model is a simple javabean with setter and getter methods?</p>
http://stackoverflow.com/questions/1873069/flex-application-framework-puremvc-portability-vs-swiz0Flex Application Framework -- PureMVC Portability vs. Swiz?Karthik2009-12-09T10:47:54Z2009-12-10T10:02:26Z
<p>Hi all,</p>
<p>My company is building a Flex application that we may need to port to other platforms:</p>
<ul>
<li>Silverlight (likely) </li>
<li>Mobile (maybe -- iPhone: Objective-C , Android: Java, etc.)</li>
<li>Desktop (maybe -- AIR, .NET, etc.) </li>
<li>TV sets (maybe eventually)</li>
</ul>
<p>Currently, I’m looking into application frameworks to build upon and I’m torn between pureMVC and Swiz. </p>
<p>I LOVE swiz for its simplicity and how it just gives you a way to hook things up and then apply your own patterns. From a flex-only perspective, this is my 1st choice.</p>
<p>But, PureMVC is platform-independent and has already been ported over to most of the platforms that are mentioned above. <strong>How valuable is this portability?</strong> Will it really make our lives significantly easier when it comes to porting and developing/maintaining multiple applications? If so, then it seems like PureMVC is the way to go.</p>
<p>Alternatively, since Silverlight has the most definite business case for porting of our application, maybe we could <strong>port Swiz to Silverlight</strong>? I'm not too familiar with which AS3 language and Flex framework features Swiz depends on and whether they are available in C#/Silvelright. <strong>Would this actually be possible?</strong></p>
<p>Thanks so much!</p>
<p>Karthik</p>
http://stackoverflow.com/questions/1299692/are-there-add-on-libraries-or-tools-available-for-asp-net-mvc-development3Are there add-on libraries or tools available for ASP.NET MVC development?mjustin2009-08-19T12:44:20Z2009-12-10T09:45:15Z
<p>My first experience with <strong>ASP.NET MVC</strong> and the Entity Framework has raised my interest in this framework and I would like to implement some basic applications, covering the basic requirements of real-world web applications. So far the support given by VS 2008 is already impressive.
For some areas however, it might be a time saver to use existing add-ons or libraries of all kind. Are there already commercial or open solutions which I should take a look at?</p>
http://stackoverflow.com/questions/1876638/well-built-php-applications-to-learn-from4Well built php applications to learn from?Jeff2009-12-09T20:26:23Z2009-12-09T23:26:48Z
<p>Hello,</p>
<p>I was wondering if any of you fine gentlemen would be able to recommend some of your favorite open source php applications in terms of code quality and proper programming technique.</p>
<p>Though I have been using frameworks for quite a while, I would love to see how professional applications go about this.</p>
<p>I'm particularly interested in</p>
<ul>
<li>MVC</li>
<li>authentication</li>
</ul>
<p>Thanks a million!</p>
<p><strong>Edit</strong>: Perhaps I didn't explain too clearly. What I was looking for most are fully functional applications that have their own built-in custom frameworks. I want to see how a professional level app is built and structured when there's no consideration for it's own framework to be used by others.</p>
<p>That being said, it looks like zend is the way to go! Thanks for the suggestions. I will take a look!</p>
http://stackoverflow.com/questions/1258169/communication-from-child-uiviewcontroller-to-parent-uiviewcontroller0Communication from child UIViewController to parent UIViewControllerYohann T.2009-08-11T02:14:16Z2009-12-09T22:56:02Z
<p>Hello,</p>
<p>I haven't figured out that yet: I have a mainViewController that switches two views, viewControllerA and ViewControllerB. The way I switch the view is by having a UIButton (mainButton) in the mainViewController, and clicking on it switches viewControllerA <--> ViewControllerB.</p>
<p>Now here is my problem. My ViewControllerA has a UIButton (ButtonA). And I want that by clicking on it, it tells the mainViewController to switch to the other view (viewControllerB)</p>
<p>In other words, the child view (viewControllerA) should send a message to the mainViewController(its parent view) that it wants to fire a method that belongs to the main view, not to itself (viewA).</p>
<p>How could I achieve that please?</p>
http://stackoverflow.com/questions/1875831/cakephp-abstracting-appcontroller-another-level-possible0Cakephp: Abstracting AppController another level, possible?Ken2009-12-09T18:27:23Z2009-12-09T21:12:44Z
<p>Hi All,
I was wondering if it's somehow possible to add another abstraction controller between AppController and my app's other controllers?</p>
<p>So that my controllers, e.g. UsersController extends SecureController
and SecureController extends AppController.</p>
<p>Also I want to be able to have other controllers extend AppController directly:
SomeNonSecureController extends AppController.</p>
<p>this is because my current AppController has all sorts of Auth and ACL stuff in its beforeFilter, but i also have controllers that don't need that security stuff (before everything needed the security, no new specs have been added)..
but because some many controllers do need it, it doesn't make sense to copy-paste the code to all needy controllers.</p>
<p>I was thinking to but all the beforeFilter security stuff into a SecureController - that way any controllers that need security simpley extend it, while others inherit from AppController directly.</p>
<p>How would you go on about doing something like this?</p>
<p>Thanks in advance,
Ken.</p>
http://stackoverflow.com/questions/600367/registering-modelbinders0Registering ModelBindersListenToRick2009-03-01T19:37:26Z2009-12-09T20:00:02Z
<p>I have just updated to RC1 MVC from the beta product.</p>
<p>I have the following code in my Application_start (in the global.ascx)</p>
<p>System.Web.Mvc.ModelBinders.Binders[typeof(Shared.DO.Gig)] = new GigModelBinder();</p>
<p>This results in the following exception....</p>
<p>Method not found: 'System.Collections.Generic.IDictionary`2 System.Web.Mvc.ModelBinders.get_Binders()'.</p>
http://stackoverflow.com/questions/1875092/mvc-model-where-to-put-data-specific-checks2MVC model where to put data specific checksPmax2009-12-09T16:32:51Z2009-12-09T19:01:39Z
<p>I'm writing my first application with Zendframework.
My question is about the Model–View–Controller (MVC) architectural pattern.</p>
<p>I currently have a model with refer to a database table.
Here's the classes that I currently have :</p>
<pre><code>Model_Person
Model_PersonMapper
Model_DbTable_Person
</code></pre>
<p>Now, I see a lot of examples on the net, but all of them are simple cases of insert/update/delete.
In my situation, I have to check if a person exists, and if it doesn't, I have to insert it and retrieve the ID (I know save return the Id, but it's not exactly what I have to do, this is and example).</p>
<p>It's quit simple, but I want to know where to put the database logic for all the others specific cases. Some others cases might involve checks across other tables or ... whatever ! </p>
<p>Should I add all the specific functions in my Model_XXXXMapper with something that would be very specific with the current validation/process that I want to do? like a function getIdOfThePersonByNameOrInsertIfNotExists() (sample name of course!!!)</p>
<p>Or should it reside in the controller with some less specifics access to my model would be validated?</p>
<p>In other word, where do I put all the data specifics functions or check ?</p>
http://stackoverflow.com/questions/1874845/asp-net-mvc-two-way-data-binding-of-model-to-radio-button-list-using-typed-model2ASP.NET MVC Two Way Data Binding of Model to Radio Button List using Typed Model. Jeremy 2009-12-09T15:56:09Z2009-12-09T18:35:43Z
<p>I have a mvc view made up of a matrix of radio buttons. Each row of radio buttons is in a group and represents a typed object from the model. Using the guidance of various blogs and postings I have successfully bound the posted form results to the typed model array in the controller action, however cannot seem to successfully reverse the effect and bind an existing model to the radio buttons while preserving their selected or unselected state.</p>
<p>My model contains a property called "AnswerValue" which is between 0 and 4 and should match up with the radiobutton names. I tried changing the index value to the model value "AnswerId" but in doing so the binding that was working no longer works (I believe the index must be zero based). Here's a few resources I have used so far this <a href="http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx" rel="nofollow">Post</a> and an <a href="http://www.hanselman.com/blog/ASPNETWireFormatForModelBindingToArraysListsCollectionsDictionaries.aspx" rel="nofollow">Article by Scott Hanselman</a> to get to where I am at now. </p>
<p>If anyone has any insight on how to perform this two way binding it would be much appreciated. </p>
<p>Thanks</p>
<p>My controller:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Save([Bind(Prefix = "SurveyAnswer")] SurveyAnswer[] responses, int SurveyID)
{
</code></pre>
<p>My View: </p>
<pre><code><%
int questionIndex = 0;
foreach (SurveyAnswer q in Model)
{
%>
<%=Html.Hidden("SurveyAnswer.Index", questionIndex)%>
<%=Html.Hidden("SurveyAnswer["+questionIndex+"].AnswerId", q.AnswerId) %>
<tr>
<td style='background-color: #aaaaaa;padding-left: 10px; padding-right: 10px;border-right: solid 1px #fffff;'><%= questionIndex+1 %></td>
<td style='text-align: right;'><%= q.Question.DisplayValue %></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "0", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue"})%></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "1", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue" })%></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "2", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue" })%></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "3", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue"})%></td>
<td><%=Html.RadioButton("SurveyAnswer[" + questionIndex + "].AnswerValue", "4", new { name = "SurveyAnswer[" + questionIndex + "].AnswerValue" })%></td>
</tr>
<%
questionIndex++;
}
%>
</code></pre>
http://stackoverflow.com/questions/1860731/mvc-creating-new-views-without-adding-actions-to-controller1MVC - Creating new Views without adding Actions to Controllersplatto2009-12-07T15:33:58Z2009-12-09T17:27:42Z
<p>I'm working on a mini CMS-like application using asp.net MVC 1.0 (I will upgrade it once 2.0 is released). Once feature I want, that is pretty vital to a CMS, is the ability for an admin to add pages to their site.</p>
<p>Essentially, if the admin wants to add a page called "Links", I want them to be able to do so without having to go through any of the hassle of adding the action to the controller and compiling a new assembly.</p>
<p>I have an idea for a solution and I want to know what the community thinks.</p>
<p>I think that I should write a class called (for arguments sake let's call it UserGeneratedGenericController) that extends the Controller class. In this class, I will have a single Action that reads a parameter and redirects to the View that corresponds with the parameter passed to the action.</p>
<p>I will also have to edit the Routing in the <code>Global.asax.cs</code> file</p>
<p>therefore
<code>/UserGeneratedGenericController/Links</code> will hit the same Action that
<code>/UserGeneratedGenericController/News</code> will hit, but will display the views as desired.</p>
<p>What say you? I'm interested in your comments on this approach and your suggestions to other approaches.</p>
http://stackoverflow.com/questions/1843017/sending-string-data-to-mvc-controller-using-jquery-ajax-and-post0Sending String Data to MVC Controller using jQuery $.ajax() and $.post()Mega Matt2009-12-03T21:24:15Z2009-12-09T15:20:28Z
<p>Hi all,</p>
<p>There's got to be something I'm missing. I've tried using $.ajax() and $.post() to send a string to my ASP.NET MVC Controller, and while the Controller is being reached, the string is null when it gets there. So here is the post method I tried:</p>
<pre><code>$.post("/Journal/SaveEntry", JSONstring);
</code></pre>
<p>And here is the ajax method I tried:</p>
<pre><code>$.ajax({
url: "/Journal/SaveEntry",
type: "POST",
data: JSONstring
});
</code></pre>
<p>Here is my Controller:</p>
<pre><code>public void SaveEntry(string data)
{
string somethingElse = data;
}
</code></pre>
<p>For background, I serialized a JSON object using JSON.stringify(), and this has been successful. I'm trying to send it to my Controller to Deserialize() it. But as I said, the string is arriving as null each time. Any ideas?</p>
<p>Thanks very much.</p>
<p><strong>UPDATE:</strong> It was answered that my problem was that I was not using a key/value pair as a parameter to $.post(). So I tried this, but the string still arrived at the Controller as null:</p>
<pre><code>$.post("/Journal/SaveEntry", { "jsonData": JSONstring });
</code></pre>