active questions tagged asp.net-mvc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:07:47Z http://stackoverflow.com/feeds/tag/asp.net-mvc http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1950577/tips-for-beginners-who-move-from-webforms-to-asp-net-mvc 7 Tips for beginners who move from webforms to asp.net mvc Pandiya Chendur 2009-12-23T03:40:12Z 2009-12-23T07:43:10Z <p>Hai ,<br/></p> <p>I ve started my asp.net mvc web application. Now i need developers advice for newbies like me who move from webforms to asp.net mvc. Some tips and preventive measures that would be helpful for beginners....</p> http://stackoverflow.com/questions/1951157/what-are-the-propertyvaluesstring-and-propertyvaluesbinary-fields-in-the-aspnetp 0 What are the PropertyValuesString and PropertyValuesBinary fields in the aspnet_Profiles table for? Matt 2009-12-23T07:11:19Z 2009-12-23T07:11:19Z <p>I figured the PropertyValuesString was for the value part of what is usually the Key-Value pair of these types of object. But then where does the PropertyValuesBinary field come in if you've already put the value into the PropertyValuesString? </p> <p>Both fields are non-nullable so I need something to put in each. What's the difference between the two and what should I be putting in them?</p> <p>Also, I was wondering why it's plural -- PropertyValue**s** -- doesn't really make sense again with the whole key-value pair thing, I figured one property should have one value.</p> http://stackoverflow.com/questions/1608134/jquery-autocomplete-problem-not-treating-arrays-correctly 0 jQuery Autocomplete Problem - Not treating Arrays correctly. Damien 2009-10-22T15:44:47Z 2009-12-23T06:30:22Z <p>I am using jQuery Autocomplete and MVC to populate a dropdownlist with a bunch of column names. </p> <p>Whenever a user changes the value of a DropDownBox on my form I make a request to my controller to return a new list of columns (as an array, wrapped in a JSON Result) that will populate my AutoComplete boxes. </p> <p>My Problem is that the autocomplete doesn't make a distinction between words and and instead insists on doing it character by c,h,a,r,a,c,t,e,r. It's very annoying. Here is the code:</p> <pre><code>function PopulateColumnsList(list) { $(".columnDropdown").setOptions({ data: list }); } $(document).ready(function() { $(".columnDropdown").autocomplete("", { width: 320, max: 14, highlight: false, minChars: 0, scroll: true, scrollHeight: 300 }); $("#Data").change(function() { $.ajax({ url: "/Home/ColumnNamesForDataSelect", type: "GET", data: { DataSelectID: parseInt($('#Data').val()) }, success: PopulateColumnsList }); }); }); </code></pre> <p>The Get Returns this response:</p> <blockquote> <p>["Memo","Balance"]</p> </blockquote> <p>Butmy AutoComplete will show each of these as single letters rather than two: Memo, Balance. I thought this was correct as the example code shows a similar way to return the result.</p> <p>Any ideas? </p> <p>Thanks in Advance. </p> http://stackoverflow.com/questions/1950336/how-can-i-do-an-eager-load-when-i-dont-know-the-name-of-the-property-i-want-to-l 0 How can I do an eager load when I don't know the name of the property I want to load? Matt 2009-12-23T02:14:26Z 2009-12-23T04:22:48Z <p>I have a generic repository and when I'm using a DoQuery method to select objects from the database, I need to load some of the related entities in order to not get nulls in the place of the fields that are foreign keys.</p> <p>The problem is that the repository is generic, so I do not know how many properties need loading or what their names are (unless there's some way of getting them) how can I make it so that all of the foreign keys have their entities loaded while still keeping this repository generic?</p> <p>Here's the DoQuery method:</p> <pre><code> public ObjectQuery&lt;E&gt; DoQuery(ISpecification&lt;E&gt; where) { ObjectQuery&lt;E&gt; query = (ObjectQuery&lt;E&gt;)_ctx.CreateQuery&lt;E&gt;("[" + typeof(E).Name + "]").Where(where.EvalPredicate); return query; } </code></pre> <p>And a <a href="http://www.codeproject.com/KB/database/ImplRepositoryPatternEF.aspx" rel="nofollow">link to the original code for the entire repository.</a></p> <p>I posted this once before and never got the answer to it but I figure this one is a little bit more relevant since before people were assuming I knew the property names and could do:</p> <p><code>.Include("PropertyNameIKnowNeedsToBeLoaded")</code> </p> <p>Here's the <a href="http://stackoverflow.com/questions/1655360/having-troubles-loading-related-entities-eager-load-with-objectcontext-createqu">question I posted before</a> hopefully that will provide a little information on where I'm at with this.</p> <p>Any help is appreciated.</p> <p>Thanks,<br/> Matt</p> http://stackoverflow.com/questions/1950537/how-do-i-get-a-linq-to-sql-group-by-query-into-the-asp-net-mvc-view 0 How do I get a linq to sql group by query into the asp.net mvc view? Brad Wetli 2009-12-23T03:29:36Z 2009-12-23T03:37:49Z <p>Sorry for the newbie question, but I have the following query that groups parking spaces by their garage, but I can't figure out how to iterate the data in the view. I guess I should strongly type the view but am a newbie and having lots of problems figuring this out. Any help would be appreciated.</p> <pre><code> Public Function FindAllSpaces() Implements ISpaceRepository.FindAllSpaces Dim query = _ From s In db.spaces _ Order By s.name Ascending _ Group By s.garageid Into spaces = Group _ Order By garageid Ascending Return query End Function </code></pre> <p>The controller is taking the query object as is and putting it into the viewdata.model and as stated the view is not currently strongly typed as I haven't been able to figure out how to do this. I have run the query successfully in linqpad.</p> http://stackoverflow.com/questions/1945468/invoke-action-method-from-clicking-a-button-in-asp-net-mvc 0 Invoke Action Method from Clicking a button in ASP.NET MVC engineerachu 2009-12-22T10:22:44Z 2009-12-23T02:28:43Z <p>I want to know if I can call a method in the controller when a button is clicked. </p> <p>I have a view called <code>home</code> and when the view is loaded, it invokes the <code>Index</code> action method in the controller. I have a <code>Button</code> (HTML or ASP.NET) called <code>LoadData</code>. When I click the button, I need to load some data in the same view called <code>Home</code>.</p> <p>How do I do that?</p> http://stackoverflow.com/questions/1937072/how-can-i-write-custom-comparison-definition-for-binary-operator-equal-for-enti 0 How can I write custom comparison (definition for binary operator Equal) for entityframework object to an int? Matt 2009-12-20T21:16:54Z 2009-12-23T02:21:15Z <p>I'm getting this error:</p> <blockquote> <p>ex = {"The binary operator Equal is not defined for the types 'MySite.Domain.DomainModel.EntityFramework.NickName' and 'System.Int32'."}</p> </blockquote> <p>What I tried to do was do a select all where the <code>NickNameId = someIntPassedIn</code>... the problem is that the NickNameId is a foreign key, so when it compares the <code>someIntPassedIn</code> to the <code>NickNameId</code> it pulls the whole <code>NickName</code> object that the <code>NickNameId</code> refers to and tries to compare the int to that object.</p> <p>I need a solution here to allow it to compare the int to the NickName object's Id... so</p> <p>A) How can I define the binary operator Equal for comparing these two objects</p> <p>OR</p> <p>B) How can I compare it directly to the id instead of the whole object?</p> <p>You don't have to read this, but here's the SelectAllByKey method incase it helps: <br/>(I passed in "NickNameId" and "1")</p> <pre><code> public IList&lt;E&gt; SelectAllByKey(string columnName, string key) { KeyProperty = columnName; int id; Expression rightExpr = null; if (int.TryParse(key, out id)) { rightExpr = Expression.Constant(id); } else { rightExpr = Expression.Constant(key); } // First we define the parameter that we are going to use the clause. var xParam = Expression.Parameter(typeof(E), typeof(E).Name); MemberExpression leftExpr = MemberExpression.Property(xParam, this._KeyProperty); int temp; BinaryExpression binaryExpr = MemberExpression.Equal(leftExpr, rightExpr); //Create Lambda Expression for the selection Expression&lt;Func&lt;E, bool&gt;&gt; lambdaExpr = Expression.Lambda&lt;Func&lt;E, bool&gt;&gt;(binaryExpr, new ParameterExpression[] { xParam }); //Searching .... IList&lt;E&gt; resultCollection = ((IRepository&lt;E, C&gt;)this).SelectAll(new Specification&lt;E&gt;(lambdaExpr)); if (null != resultCollection &amp;&amp; resultCollection.Count() &gt; 0) { //return valid single result return resultCollection; }//end if return null; } </code></pre> <p>Let me know if you need any more info.</p> <p>Thanks,<br/> Matt</p> http://stackoverflow.com/questions/1934803/how-do-i-use-microsoftmvcvalidation-js-without-having-to-include-microsoftajax-js 0 How do I use MicrosoftMvcValidation.js without having to include MicrosoftAjax.js ? Simon 2009-12-20T04:08:24Z 2009-12-23T00:28:08Z <p>It looks like there's an issue in MVC 2 RC1 if you want to use jQuery.Validate but not the main Microsoft AJAX - which is 25kb even when gzipped.</p> <p>According to Phil Haack you're supposed to be able to <a href="http://haacked.com/archive/2009/11/19/aspnetmvc2-custom-validation.aspx" rel="nofollow">just include these scripts</a>:</p> <pre><code> &lt;script src="/Scripts/jquery-1.3.2.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="/Scripts/jquery.validate.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="/Scripts/MicrosoftMvcJQueryValidation.js" type="text/javascript"&gt; </code></pre> <p>Unfortunately in some reorganization they did between Beta and RC - you also now need to include <code>MicrosoftAjax.js</code> which defines the <code>Type</code> prototype functions that are used by <code>MicrosoftMvcJQueryValidation.js</code> (the first line is <code>Type.registerNamespace('Sys.Mvc');</code> which is defined in <code>MicrosoftAjax.js</code>)</p> <p>Has anyone already extracted out the necessary code from <code>MicrosoftAjax.js</code> that is needed? I'll have to do it sooner or later but if anyone has already done it that would help a lot!</p> http://stackoverflow.com/questions/1433419/how-can-i-reload-a-div-with-a-partialview-in-asp-net-mvc-using-jquery 0 How can I reload a div with a PartialView in ASP.NET MVC using jQuery? Markus 2009-09-16T14:40:48Z 2009-12-23T00:25:47Z <p>I have a div with a partial inside somewhere on the page. I have a event on a button. How could i write a Javascript that takes the div and reloads it and also reloads the partial view. </p> <p>I have this in another view. But i can't do it like this now. But i need the same thing to happen only execute by a jquery not directly in the page. Can i run maybe simular ajax code in the jqury script because its javascript too isnt it?. </p> <pre><code>&lt;% using (Ajax.BeginForm("EditFeiertag", new AjaxOptions { InsertionMode = InsertionMode.Replace, UpdateTargetId = "feiertage" })) { %&gt; &lt;div id="feiertage"&gt; &lt;% Html.RenderPartial("FeiertagTable"); %&gt; &lt;/div&gt; &lt;% } %&gt; </code></pre> <p>i would help me if i could run the script above by start a click event or something like that</p> http://stackoverflow.com/questions/1940403/need-solution-for-split-cell-value-string-and-view-this-as-link-in-view-in-asp 0 need solution for split cell value (string) and view this as link in VIEW in ASP.NET MVC 1 project unknown (google) 2009-12-21T14:27:05Z 2009-12-22T22:35:14Z <p>In my table i have: id, header, centent and foto columns. In foto column are cells included string values for egxample :(foto1.jpg,foto2.jpg). J split this and the result input to table. I'm trying to view this in Details.aspx. I must view one record from table in my database plus one split cell as links. View the hole record is not the problem but this fotos..it is. Adding new foto do table must be dynamic: cell before:(foto1.jpg,foto2.jpg), cell after (foto1.jpg,foto2.jpg,foto3.jpg) plus the jpg file in folder with fotos. The View of Details must render dynamically. Sory for my eanglish. Help me, thenk you! </p> http://stackoverflow.com/questions/1949436/asp-net-mvc-generic-dynamic-controllers-and-type-gettype-how-can-i-keep-my-urls 0 ASP.net mvc, generic/dynamic controllers and Type.GetType: how can I keep my URLs pretty? Chris McCall 2009-12-22T21:51:13Z 2009-12-22T22:20:39Z <p>Using information from some of the questions here on generic views, I have created an MVC app that reads .dlls from its own /bin directory and builds the UI on the fly. InputBuilder partial views helped a lot. I also made a ControllerFactory, after the advice from here and elsewhere.</p> <p>My problem is, while everything is working OK and reflection is recognizing the types I'm passing around, GetType() requires the full assembly qualified name ('scuse the code, still prototyping):</p> <pre><code>public IController CreateController(RequestContext requestContext, string controllerName) { Type controllerType = null; Type genericType; //controllerName coming in as full assembly-qualified path Type baseControllerType = typeof(CoreDataController&lt;&gt;); genericType = Type.GetType(controllerName); if (genericType != null) { controllerType = baseControllerType.MakeGenericType(genericType); } if (controllerType != null) { return Activator.CreateInstance(controllerType) as IController; } return controllerType; } </code></pre> <p>This makes my urls look like this:</p> <p><code>http://localhost:1075/CoreData.Plans,%20PlansLib,%20Version=1.0.0.0,%20Culture=neutral,%20PublicKeyToken=null/Create</code></p> <p>Obviously sub-optimal.</p> <p>What I'd like is <code>http://localhost:1075/CoreData.Plans/Create</code></p> <p>or even better:</p> <p><code>http://localhost:1075/Plans/Create</code></p> <p>Should I store a dictionary accessible to my controller on <code>Application_Start()</code> mapping short names to fully-qualified names? Is there a feature of Reflection I'm missing that would solve this problem?</p> http://stackoverflow.com/questions/1949341/how-do-i-check-previous-data-in-linq 0 How do I Check previous data in LINQ? unknown (yahoo) 2009-12-22T21:35:31Z 2009-12-22T22:08:01Z <p>I have a collection of data that checks if there is a change in a particular field to get the sum for another column.</p> <pre><code>Total = Details.Where(s=&gt;s.indicator != *prior indicator before this...).Sum(s =&gt; s.amount); </code></pre> http://stackoverflow.com/questions/1184404/flash-uploader-and-asp-net-mvc 1 Flash uploader and ASP.net MVC Sam_Cogan 2009-07-26T12:05:28Z 2009-12-22T21:58:57Z <p>I have a flash upload component I want to use to upload multiple files. I'm using it in a MVC app and what I want to happen is that the user picks the files they want to upload, it uploads them and then displays a page showing all the files they have uploaded so they can add a description and select where to save them, and then save the files.</p> <p>At the moment when files are uploaded the flash component calls a controller to process the files, this bit works fine, I can get the uploaded files and do what I like with them. The problem is is that I cannot just redirect to a View once the controllers done its work, because its the flash component calling the controller, not the page and so nothing happens when you try and do that.</p> <p>I had attempted to save the files in the session and then forward the user on completion of the upload using some code in the flash actionscript, this however does not work, the session always turns up null. I had also considered actually saving the files to a temp location and then on the displaying page just listing all files in the temp location, but this is then going to involve saving the files twice, once to the temp directory and then to the actual place the user wants to put them, which I assume will be slow.</p> <p>Any thoughts on the best way to do this?</p> http://stackoverflow.com/questions/1725108/asp-net-mvc-list-population-in-strongly-typed-views 0 ASP.NET MVC List population in strongly typed views bobwah 2009-11-12T20:24:23Z 2009-12-22T21:57:58Z <p>A bit of background:</p> <p>I'm building an MVC app to store golf course data and have created a Create view page for the courses. This contains a partial view of a scorecard that I am going to use for other things such as recording results <em>etc.</em> I've currently built the scorecard so it fires off jquery triggers when it is edited. From which the course create has jquery code bound to these events and populates hidden form inputs for each of the 18 holes.</p> <p>Question:</p> <p>I was wondering if I need to have a mass of hidden form inputs on my create page to store the fired values or if I can have a list in my view model that I can update somehow. </p> <p>Any more elegant solutions than what I have at the moment would be helpful.</p> http://stackoverflow.com/questions/1942017/best-practices-for-minimizing-asp-net-mvc-inline-code-tag-soap 0 Best practices for minimizing ASP.NET MVC inline code (tag soap)? Tony_Henrich 2009-12-21T19:15:57Z 2009-12-22T21:31:03Z <p>I am an experienced ASP.NET WebForm developer and trying to learn MVC. I am still not too excited about MVC because of the inline code process. At some point I can't see the HTML from all the code and I have to render the page and do a view source. </p> <p>I know you can swap out the view engine and was wondering about two things:</p> <p>1- Is there a view engine which uses less inline code than the default view engine? (Actually a resource doing a view engine comparison is helpful)</p> <p>2- Is there a good resource explaining best practices for coding inline code for the view? I might be coding unnecessary code or over doing it.</p> <p>3- What does ASP.NET MVC <strong>v2</strong> offer in terms of view functionality more than previous version?</p> http://stackoverflow.com/questions/1900762/multiple-file-upload-like-orkut-style-with-asp-net-mvc 0 Multiple file upload like orkut style with asp.net mvc.. Pandiya Chendur 2009-12-14T12:54:13Z 2009-12-22T21:30:12Z <p>Hai Guys, Recently i am working with asp.net mvc... Now i want to upload multiple file uploads like orkut style with asp.net mvc ... I dont know how to get started ...</p> http://stackoverflow.com/questions/1948092/how-can-i-better-handle-this-situation-in-asp-net-mvc-concerning-my-partial-views 3 How can I better handle this situation in ASP.NET MVC concerning my Partial Views? KingNestor 2009-12-22T17:57:56Z 2009-12-22T21:12:50Z <p>I have a single view which has a menu on the left hand side and a container on the right hand side that is rendered from one of several partial views.</p> <p>Right now I'm running into a situation like the following "Index" view:</p> <pre><code>&lt;div class="container"&gt; &lt;div class="leftHandMenu"&gt; // various dynamic menu items &lt;/div&gt; &lt;div class="rightHandPane"&gt; &lt;% if (Model.CurrentPane == "Sent") { %&gt; &lt;% Html.RenderPartialView("SentPartial", Model.SomeData); %&gt; &lt;% } else if (Model.CurrentPane == "Inbox") { %&gt; &lt;% Html.RenderPartialView("InboxPartial", Model.SomeData); %&gt; &lt;% } else if (Model.CurrentPane == "Alerts") { %&gt; &lt;% Html.RenderPartialView("AlertsPartial", Model.SomeData); %&gt; &lt;% } %&gt; &lt;/div&gt; // various other common view items &lt;/div&gt; </code></pre> <p>with the following actions:</p> <pre><code>public ActionResult Inbox(int? page) { MessageListViewModel viewData = new MessageListViewModel(); viewData.SomeData = messageService.getInboxMessages(page.HasValue ? page.Value : 0); viewData.CurrentPane = "Inbox"; return View("Index", viewData); } public ActionResult Alerts(int? page) { MessageListViewModel viewData = new MessageListViewModel(); viewData.SomeData = messageService.getAlertMessages(page.HasValue ? page.Value : 0); viewData.CurrentPane = "Alerts"; return View("Index", viewData); } public ActionResult Sent(int? page) { MessageListViewModel viewData = new MessageListViewModel(); viewData.SomeData = messageService.getSentMessages(page.HasValue ? page.Value : 0); viewData.CurrentPane = "Sent"; return View("Index", viewData); } </code></pre> <p>I realize this situation isn't ideal, but I need those portions to remain partial views. I'm doing a bunch of ajax calls on this view to reload that "rightHandPane" with the various partial views. </p> <p>I have a single view "Index", and then these various partial views which load a particular pane of "Index". I'm passing in the view name into the ViewModel, and then have these if-else statements loading in the appropriate partial view.</p> <p>How else could I be doing this? I'm about to add 3 more partial views and this is starting to be a pain. I'd prefer if I didn't have to maintain my currentPane in my ViewModel at all really.</p> <p>Is there something I can do to avoid this situation all-together? I've considered using a Master View for the common portions but I need it to be a strongly typed Master View, which isn't that easy in ASP.NET MVC.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1948487/microsoftmvcajax-breaks-jquery-validate-plugin 0 MicrosoftMvcAjax breaks jQuery validate plugin [closed] Raphael 2009-12-22T19:08:56Z 2009-12-22T21:10:16Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1163537/jquery-validate-ajax-beginform">jquery validate &amp; ajax.beginform</a> </p> </blockquote> <p>I'm trying to use the jQuery validate plugin to validate a form (Ajax.BeginForm). When I enter invalid data on the form the error messages are shown but the form will submit anyway. How do I stop MicrosoftMvcAjax from submiting an invalid form?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1948678/site-update-testing-was-fine-after-deployment-again-fine-once-user-load-incre 2 Site update, testing was fine, after deployment, again fine, once user load increases, FAIL? Ryan 2009-12-22T19:45:55Z 2009-12-22T20:43:03Z <p>We are using ASP.NET MVC with LINQ to SQL. We added some features and tested them all to perfection on our QA box. We are using Windows Server 2003 and SQL Server 2005. So when we pushed out changes to the Live web server we also used Red Gate SQL Compare to push new database changes to the LIVE database. We tested again between the few of us, no problems. Time for bed.</p> <p>The morning comes and users are starting to hit the app, and BOOM. We have no idea why this would happen as we have not been doing any new types of code things that we were not doing before. However we did notice that during the SQL Compare sync the names of all the foreign keys were different between the two databases, not the IDs in the tables, FK_AssetAsset_A0EB67 to FK_AssetAsset_B67EF8 (for example, don't remember the exact number of trailing mixed characters during the SQL Compare), we are not sure why but that is another variable in this problem.</p> <p>Strangely once this was all pushed out we could then replicate the errors on QA, but not before everything was pushed to LIVE.</p> <p>QA and LIVE databases are on the same SQL Server, but the apps are on different instances of Windows Server 2003.</p> <p>Errors generated:</p> <p>Index was outside the bounds of the array.</p> <p>Invalid attempt to call FieldCount when reader is closed.</p> <p>Server failed to resume the transaction.</p> <p>There is already an open DataReader associated with this Command which must be closed first.</p> <p>A transport-level error has occurred when sending the request to the server.</p> <p>A transport-level error has occurred when receiving results from the server.</p> <p>Invalid attempt to call Read when reader is closed.</p> <p>Invalid attempt to call MetaData when reader is closed.</p> <p>Count must be positive and count must refer to a location within the string/array/collection. Parameter name: count</p> <p>ExecuteReader requires an open and available Connection. The connection's current state is connecting.</p> <p>Any one have any idea what the heck could have happened?</p> <p><hr></p> <p>EDIT: Since we were able to replicate the errors all of a sudden on QA, it might not be a user load issue... Needless to say we all feel really screwed here.</p> http://stackoverflow.com/questions/1948799/generate-an-excel-xml-document-in-asp-net-mvc-web-site 0 Generate an Excel XML document in Asp.net MVC Web Site Mark Ewer 2009-12-22T20:06:31Z 2009-12-22T20:19:11Z <p>I have an ASP.Net MVC site that generates a Microsoft Excel 2003 XML formatted spreadsheet. The spreadsheet looks good, the controller and views both work, but the file won't open in Excel. It opens in the browser because it is an XML document.</p> <p>I tried changing the ContentType to be the Excel XLS format (application/excel) and that made Excel open the file but it gives a warning message that the file is an XML document, not an XLS document.</p> <p>How do you make an Excel XML document open in Excel from a web site?</p> <pre><code>&lt;%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %&gt;&lt;% this.Context.Response.Clear(); this.Context.Response.AddHeader("content-disposition", "attachment;filename=State_Report_" + this.ViewData["State"] + ".xml"); this.Context.Response.Charset = ""; this.Context.Response.Cache.SetCacheability(HttpCacheability.NoCache); this.Context.Response.ContentType = "application/excel"; %&gt;&lt;?xml version="1.0"?&gt; &lt;?mso-application progid="Excel.Sheet"?&gt; &lt;Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40"&gt; </code></pre> http://stackoverflow.com/questions/1948825/validation-runner-for-castle-or-nhibernate-with-buddy-class-support 0 Validation Runner for Castle (or NHibernate) with Buddy Class Support Vince 2009-12-22T20:11:47Z 2009-12-22T20:11:47Z <p>I'm using the wonderful xVal library for setting up client side validation of rules defined server side in ASP.NET MVC. </p> <p>In my implementation I need buddy classes since I'm extending classes already defined by entity framework. (I recognize that MVC2 may make all this moot, but I'm staying in MVC1 until 2 goes live). </p> <p>The DataAnnotationsValidationRunner doesn't detect valid email addresses [DataType(DataType.EmailAddress)] (it was letting "blah" through as valid), so I decided to try out Castle Validator. I set up a runner and followed the instructions here: <a href="http://xval.codeplex.com/Thread/View.aspx?ThreadId=50161" rel="nofollow">http://xval.codeplex.com/Thread/View.aspx?ThreadId=50161</a> including:</p> <p>internal class CastleValidationRunner { private static readonly CachedValidationRegistry registry = new CachedValidationRegistry();</p> <pre><code>public static IList&lt;ErrorInfo&gt; GetErrors(object instance) { var result = new List&lt;ErrorInfo&gt;(); var runner = new ValidatorRunner(registry); if (!runner.IsValid(instance)) { var errorSummary = runner.GetErrorSummary(instance); result.AddRange(from prop in errorSummary.InvalidProperties from err in errorSummary.GetErrorsForProperty(prop) select new ErrorInfo(prop, err)); } return result; } </code></pre> <p>}</p> <p>It worked great if I move the validation out of the buddy classes and into the main class. However, when I set the validation rule within the buddy class, it doesn't get triggered. Here is the business object class:</p> <pre><code>[MetadataType(typeof(NewUserMetadata))] public class NewUser { public string FirstName { get; set; } public string Email { get; set; } } public class NewUserMetadata { [Required] public string FirstName { get; set; } [Required] [DataType(DataType.EmailAddress)] public string PrimaryEmail { get; set; } { </code></pre> <p>Comparing the Castle runner with the DataAnnotations one makes it pretty clear that only the latter was set up to look at buddy attributes. Here it is, straight out of the xVal documentation: </p> <pre><code>public static class DataAnnotationsValidationRunner { /// &lt;summary&gt; /// Runs each ValidationAttribute associated with a property on the supplied instance /// and returns an ErrorInfo relating to each validation failure. Caution: certain /// ValidationAttribute types claim to be valid even when they aren't - this runner /// would need to detect those special cases if you plan to rely on it. Fortunately, /// other validation runners (e.g., for Castle Validation and NHibernate.Validate) /// report all their errors correctly. /// &lt;/summary&gt; public static IEnumerable&lt;ErrorInfo&gt; GetErrors(object instance) { var metadataAttrib = instance.GetType().GetCustomAttributes(typeof(MetadataTypeAttribute), true).OfType&lt;MetadataTypeAttribute&gt;().FirstOrDefault(); var buddyClassOrModelClass = metadataAttrib != null ? metadataAttrib.MetadataClassType : instance.GetType(); var buddyClassProperties = TypeDescriptor.GetProperties(buddyClassOrModelClass).Cast&lt;PropertyDescriptor&gt;(); var modelClassProperties = TypeDescriptor.GetProperties(instance.GetType()).Cast&lt;PropertyDescriptor&gt;(); return from buddyProp in buddyClassProperties join modelProp in modelClassProperties on buddyProp.Name equals modelProp.Name from attribute in buddyProp.Attributes.OfType&lt;ValidationAttribute&gt;() where !attribute.IsValid(modelProp.GetValue(instance)) select new ErrorInfo(buddyProp.Name, attribute.FormatErrorMessage(string.Empty), instance); } public static IEnumerable&lt;ErrorInfo&gt; GetErrorList(object instance) { return GetErrors(instance).ToList(); } } </code></pre> <p>I don't understand how to modify the Castle runner to work like this one so that it will pick up buddy classes. Can someone help with a rewritten runner? Also, I'd be happy to try NHibernate if a sample is more readily available. </p> <p>Without the improved runner, my client side validation seems to be ok, but I want it working server-side too so that my unit tests will work. </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/556988/componentnotregisteredexception-probs-asp-net-mvc 0 ComponentNotRegisteredException Probs - ASP.NET MVC Andy 2009-02-17T14:16:28Z 2009-12-22T20:00:02Z <p>Hi All,</p> <p>I recently upgraded a project I am working on to RC1 and I am absolute pulling my hair out. I am using AbsoluteRouting and I keep getting the following issue which is preventing me from upgrading. I have know cllue about whether you have any ideas but I thought I would see if you did (really appreciate any help you can provide :) )</p> <p>After migrating I get this error:</p> <p>Global.asax.cs</p> <pre><code>routes.Add(new EnableAbsoluteRouting() .SetPort("http", 2008) .SetPort("https", 450)); routes.Add(new Route("Login/SignIn", new MvcRouteHandler()) { Defaults = new RouteValueDictionary(new { controller = "Login", action = "SignIn" }) }); </code></pre> <p>Control(*.ascx) inside View</p> <pre><code>&lt;% using (Html.Form&lt;LoginController&gt;(c =&gt; c.SignIn())) { %&gt; EnableAbsoluteRouting.cs: public override VirtualPathData GetVirtualPath(RequestContext requestContext, RouteValueDictionary values) { using (RouteTable.Routes.GetReadLock()) { foreach (var routeBase in RouteTable.Routes) { if (routeBase != this) { /// Error there: var vpd = routeBase.GetVirtualPath(requestContext, values); if (vpd != null) return EnsureCorrectScheme(requestContext, routeBase, vpd); } } } return null; } </code></pre> <p>NullReferenceException:</p> <p>" at System.Collections.Generic.Dictionary`2.Enumerator.MoveNext()\r\n </p> <p>at System.Web.Routing.ParsedRoute.Bind(RouteValueDictionary currentValues, RouteValueDictionary values, RouteValueDictionary defaultValues,</p> <p>RouteValueDictionary constraints)\r\n at System.Web.Routing.Route.GetVirtualPath(RequestContext requestContext,</p> <p>RouteValueDictionary values)\r\n at System.Web.Routing.RouteCollection.GetVirtualPath(RequestContext requestContext,</p> <p>RouteValueDictionary values)\r\n at Microsoft.Web.Mvc.LinkBuilder.BuildUrlFromExpression[T](ViewContext context,</p> <p>Expression<code>1 action)\r\n at Microsoft.Web.Mvc.LinkExtensions.BuildUrlFromExpression[T](HtmlHelper helper, Expression</code>1 action)\r\n</p> <p>at Microsoft.Web.Mvc.MvcForm<code>1..ctor(HtmlHelper helper, HttpContextBase context, Expression</code>1 postAction, FormMethod method,</p> <p>RouteValueDictionary htmlAttributes)\r\n at Microsoft.Web.Mvc.FormExtensions.Form[T](HtmlHelper helper, Expression`1 postAction,</p> <p>FormMethod method, IDictionary`2 htmlAttributes)\r\n at Microsoft.Web.Mvc.FormExtensions.Form[T](HtmlHelper helper,</p> <p>Expression`1 postAction)\r\n at ASP.views_shared_controls_quicklogincontrol_ascx.__Render__control1(HtmlTextWriter __w,</p> <p>Control parameterContainer) in</p> <p>d:\ Projects\WebSite\Views\Shared\Controls\LoginControl.ascx:line 11\r\n</p> <p>at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)\r\n </p> <p>at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer)\r\n at System.Web.UI.Control.Render(HtmlTextWriter writer)\r\n </p> <p>at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)\r\n</p> <p>at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)\r\n </p> <p>at System.Web.UI.Control.RenderControl(HtmlTextWriter writer)\r\n </p> <p>at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)\r\n </p> <p>at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer)\r\n at System.Web.UI.Page.Render(HtmlTextWriter writer)\r\n </p> <p>at System.Web.Mvc.ViewPage.Render(HtmlTextWriter writer)\r\n </p> <p>at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)\r\n</p> <p>at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)\r\n</p> <p>at System.Web.UI.Control.RenderControl(HtmlTextWriter writer)\r\n </p> <p>at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)"</p> <p><hr /></p> <p>Any ideas would really assist :)</p> http://stackoverflow.com/questions/1948628/asp-net-mvc-renderpartial-create-in-a-list-view 0 Asp.Net MVC - RenderPartial - Create in a List view Melursus 2009-12-22T19:36:52Z 2009-12-22T19:45:05Z <p>I got a page that lists all my articles (Articles/List.aspx).</p> <p>I also got a control that create article (Article/Create.ascx).</p> <p>I will like that my List.aspx page that's render the Create.ascx to be able to create article.</p> <p>I know that in MVC, the preferred approach is one page by action. But in this case I need to do that. It's a design issue and how the client want the Web site to work.</p> <p>So for now, I got the following code in List.aspx :</p> <pre><code>&lt;% Html.RenderPartial("Create", new Domain.Models.Article()); %&gt; </code></pre> <p>That render correctly. But when I hit the create button, it's doesn't go in the Create[post] method of my ArticleController.</p> <p>Any idea why and how I could resolve that issue ?</p> http://stackoverflow.com/questions/1946840/what-is-the-recommended-way-to-use-subsonic 0 What is the recommended way to use Subsonic Coolcoder 2009-12-22T14:52:00Z 2009-12-22T19:17:51Z <p>I like the simplicity of the Simple Repository , this looks ideal for simple CRUD operations. </p> <p>However, if I have a requirement for a complex query on top and ideally want my app to call a Stored Proc what is the recommended way to do this?</p> <p>Does ActiveRecord cater for Stored Procs?</p> <p>I will be using this in a ASP.NET MVC app and really looking for the easiest (to implement) solution that still offers me some flexibility/control in certain situations (e.g. use a proc when I want/need to).</p> <p>I am aware of LINQ to SQL, Entity Framework and NHIbernate but would prefer Subsonic.</p> http://stackoverflow.com/questions/867253/how-can-i-pass-a-textboxes-value-to-my-ajax-actionlink 1 How can I pass a Textboxes value to my Ajax.ActionLink? Whozumommy 2009-05-15T06:29:34Z 2009-12-22T19:13:41Z <p>In my ASP.NET MVC application I want a user to add a value into a textbox and then press my Ajax.ActionLink. I want to do something like this:</p> <p>Ajax.ActionLink("Go", "Action", "Controller", new { value = textbox1.value })</p> <p>Or how else can I get this textbox value back to my action? Jquery? </p> http://stackoverflow.com/questions/1948302/linq-image-saving-problems 1 linq image saving problems CofeeCode 2009-12-22T18:35:46Z 2009-12-22T19:11:41Z <p>I have an object that has a property:</p> <pre><code>[Column] public Binary Image { get; set; } </code></pre> <p>When the object is saved the first time every this is OK, but when it is modified I get an exception on SubmitChanges:</p> <blockquote> <p>The data types image and varbinary(max) are incompatible in the equal to operator.</p> </blockquote> <p>What might be the problem here?</p> http://stackoverflow.com/questions/1948230/how-do-i-render-an-alternate-child-view-in-mvc 1 How do I render an alternate child view in MVC? Jeff Martin 2009-12-22T18:22:50Z 2009-12-22T18:55:20Z <p>I'm new to working with MVC so please don't assume I know anything.</p> <p>I am picking up a project that has much already written in MVC and I am trying to add some things to it.</p> <p>On one View there is a line</p> <pre><code>&lt;% Html.RenderAction("List", "Image", new { id = Model.JobId, all = true }); %&gt; </code></pre> <p>I see a List.ascx under the Image directory. I see the List method on the view controller.</p> <p>I'd like to render the results of that list method to a different ascx file. (AssignImage.ascx) I realize I could add another method on the controller, but it seems like I should have a way of using the same method but a different view.</p> http://stackoverflow.com/questions/1947181/asp-net-mvc-html-element 0 ASP.NET MVC Html.Element ? Detroitpro 2009-12-22T15:43:50Z 2009-12-22T18:15:02Z <p>Is there a generic Html.Element?</p> <p>I would like to be able to do this:</p> <pre><code>Html.Element&lt;AccountController&gt;("IFrame", "elementName", new { src = c =&gt; c.ChangePassword }) </code></pre> http://stackoverflow.com/questions/1946698/how-can-i-do-rapid-application-development-with-asp-net-mvc 4 How can I do rapid application development with ASP.NET MVC? Erik 2009-12-22T14:29:59Z 2009-12-22T18:12:41Z <p>I've been given a short amount of time (~80 hours to start with) to replace an existing Access database with a full-blown SQL + Web system, and I'm enumerating my options. I would like to use ASP.NET MVC, but I'm unsure of how to use it effectively with my short timetable.</p> <p>For the database backend I'll be using Linq to SQL as it's a product I already know and can get something working with it quickly.</p> <p>Does anyone have any experience with using ASP.NET MVC in this way and can share some insight?</p> <p><strong>Edit:</strong> The reason I've been interested in ASP.NET MVC is because I know (100% confirmed) that there will be more work to do after this first round, and I'd like my maintenance work to be as easy as possible. In my experience Webforms applications tend to break down over repeated maintenance, despite discipline.</p> <p>Maybe there's a middle ground? How difficult would it to be for me to, say, build the app with Webforms, then migrate it to MVC later when I have more time budgeted to the project?</p> <p><strong>Edit 2:</strong> Further background: the Access application I'm replacing is used in some capacity by everyone in the building, and since it was upgraded from Access 98 to 2003 it's been crashing daily, causing hours of lost productivity as people have to re-enter data since the last backup. This is the reason for the short amount of time - this is a critical business function, and they can't afford to keep re-entering data on a daily basis.</p> http://stackoverflow.com/questions/1947653/asp-net-mvc-secure-temporary-storage-of-credit-card-data 3 ASP.NET MVC - Secure Temporary Storage of Credit Card Data Nathan Taylor 2009-12-22T16:51:30Z 2009-12-22T17:59:11Z <p>I have a checkout process for a shopping cart that is currently storing credit card data in the session for retrieval once the user finalizes the purchase. The purchase process is set up such that the user inputs the credit card, views a confirmation page, and then finalizes the order. The confirmation and finalization actions are the only two actions that need access to the credit card data and to be safe all other actions should discard it. </p> <p>Short of doing reflection in a base controller to check the current action the user is calling, I cannot think of an elegant way to discard the data on the disallowed requests. Additionally, if the user fails to make another request after entering the data it will linger in the session until they come back to the website- whenever that happens. One suggestion I was offered was encrypting the data into a hidden field and relying on the SSL ticket to prevent caching the markup. This seems like a fairly safe approach, but I don't much like the idea of placing the credit card data in a user-accessible location encrypted or not. Storing in the database is out because the client does not want credit card data saved.</p> <p>What is the ideal approach to temporarily persisting sensitive data like credit card information across more than one page request?</p> <p><hr></p> <p>Perhaps someone can tell me if this is a sufficient approach. I have set my Shopping Cart which is stored in the session to have a unique Guid generated every time the object is newed and that Guid is used as a key to encrypt and decrypt the credit card data which i am serializing as a string encrypted with <a href="http://en.wikipedia.org/wiki/Advanced%5FEncryption%5FStandard" rel="nofollow">Rijndael algorithm</a>. The encrypted string is then passed to the user in a hidden field and deserialized after finalize is clicked. The end result is a string much like this: </p> <pre><code>VREZ%2bWRPsfxhNuOMVUBnWpE%2f0AaX4hPgppO4hHpCvvwt%2fMQu0hxqA%2fCJO%2faOEi%2bX3n9%2fP923mVestb7r8%2bjkSVZDVccd2AJzCr6ak7bbZg8%3d </code></pre> <p><hr></p> <pre><code>public static string EncryptQueryString(object queryString, Guid encryptionKey) { try { byte[] key = Encoding.UTF8.GetBytes(ShortGuid.Encode(encryptionKey).Truncate(16));//must be 16 chars var rijndael = new RijndaelManaged { BlockSize = 128, IV = key, KeySize = 128, Key = key }; ICryptoTransform transform = rijndael.CreateEncryptor(); using (var ms = new MemoryStream()) { using (var cs = new CryptoStream(ms, transform, CryptoStreamMode.Write)) { byte[] buffer = Encoding.UTF8.GetBytes(queryString.ToString()); cs.Write(buffer, 0, buffer.Length); cs.FlushFinalBlock(); cs.Close(); } ms.Close(); return HttpUtility.UrlEncode(Convert.ToBase64String(ms.ToArray())); } } catch { return queryString.ToString(); } } </code></pre>