asp.net-mvc

With MVC.NET Model Binding, does the view page Model and the binding Model have to be the same class?

(That is, the model that you pass to the view and the model that you get back once the form posts.) If not, is it better to do so anyways? What if there is data you are gathering that is beyond what the view page model has a property for? ...

Bin-deployed MVC app expects different manifest

This is seriously starting to bake my noodle. I've just built and deployed (via FTP) a vanilla ASP.Net MVC application (version 1.0.0.0), but have struck the following problem after deployment: Could not load file or assembly 'System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its de...

Set Jquery autocomplete Http method to post

Hello, Is there a way to Set Jquery's autocomplete Http submission method to POST instead of GET? ...

Mixing Jquery Ajax Post To ActionResult, can I still return a new view?

After a post to a ActionResult Method from JQuery ajax post, I return RedirectToACtion, but it is not redirecting. Why is this, and how can I get the redirect to fire? ...

Search Database - ASP.NET MVC C#

I'm attempting to implement complete search functionality in my ASP.NET MVC (C#, Linq-to-Sql) website. The site consists of about 3-4 tables that have about 1-2 columns that I want to search. This is what I have so far: public List<SearchResult> Search(string Keywords) { string[] split = Keywords.Split(new char[] { ' '...

Update Foreign key (entity) with entity framework V1

Hello I have a small ASP.NET MVC application with the following entity objects: Person PersonId Name (string) FirstName (string) Country (Country) Country CountryId Name I can add and delete the entity's this works fine. I can also update name, firstname. But how can i update the country property with another country. i was tr...

authorize and charge a credit card for on demand subscription

I am working on e-commerce application using asp.net MVC with C#. I need to authorize the users who signs up with the application with the credit card. 1). When the user sign up, i need to get the credit card details and authorize the card by either Paypal or Authorize.net without saving the credit card details except subscription id o...

ASP.NET MVC: Which JavaScript toolkit works best?

Hey Im just wondering which JavaScript library/toolkit works the best with ASP.NET MVC? Is it just a quesstion of what the individual programmer prefers or is there actually some benefits with some of the toolkits over the others? ...

Edit VWD Default MVC project template configuration

I'd love to add <MvcBuildViews>true</MvcBuildViews> to the default MVC Project config. It's required if you wanna to find Errors in views at compile errors http://devermind.com/linq/aspnet-mvc-tip-turn-on-compile-time-view-checking/ ...

NHibernate - child object is null

Using NHibernate 2.0, NHibernate class attributes for mappings, ASP.NET MVC to create a message board type app. I have 2 entities, Post and User. Post has an Owner property which is an instance of User. It also has a Replies property which is a collection of type ISet. The idea is that one post can have one level of replies, the same...

Track user activity/actions for an asp.net mvc website?

I would like to keep a log of each page view for all users of my web application. After enough time has passed, I will then use that log to generate reports. I would like to have the logging mechanism be a bit flexible since I wouldn't need to log every http request. An example use case is: A company signs up for my web app and allo...

ASP.NET MVC.NET jquery $.ajax (..) doesnt query ? / jsTree.refresh() doesnt query server ?

i have a partial which contains a jsTree (jsTree.com). which i've setup to async loading of json data. my controller returns json data in a format accepted by jsTree. this all works perfectly, i can collapse node's and the subnodes are loaded asynchronally like it should. but when i make a change to my database (simple change of a nam...

ASP.NET MVC : Form values get cached after the first post

I might be doing something completely wrong here but for some reason the values of this form i have in one of my pages get cached after the first post. This is not a browser thing because even if i open a different browser the values posted are still cached. My form is very simple: <form action="/post/save" method="post"> <label>Ty...

Managing security rights based on User.Current.Name in ASP.NET MVC

I am using ASP.NET MVC to build a web application. In the main screen of logged-in user, I am using User.Current.Name to determine logged-in user identity, this is mapped to ID of a domain model data that is related to the current user. No one else should be able to see or edit this information (say his profile). I am using membership a...

How to delete multiple items in MVC with a single link?

Consider following: Partial View: <%= Html.ListBox("BlackList", Model.Select( x => new SelectListItem { Text = x.Word, Value = x.ID.ToString(), Selected = Model.Any(y=> y.ID == x.ID...

Caching and accessing configuration data in ASP.NET MVC app.

I'm about to take a look at how to implement internationalisation for an ASP.NET MVC project. I'm looking at how to allow the user to change languages. My initial though is a dropdownlist containing each of the supported langauages. Whoever a few questions have come to mind: How to store the list of supported languages? (e.g. just "...

Which is the best way to store text files into a Sql Server data base, for an asp.net mvc web application?

I'm making a small asp.net mvc app. in which I have to compute data from several CSV files ( between 5 to 10 files). The application must provide upload and download actions for these files. The part where I don't have experience is the data base. What column type should I use? text, image, binary ? the size of a file will be betweent ...

How to use a jQuery UI Modal Form from ASP.Net MVC list page.

I am tryng to use this: http://jqueryui.com/demos/dialog/#modal-form I have: <script type="text/javascript"> $(document).ready(function() { $("#dialog").dialog(); $("#dialog").dialog('close'); $('.myPop').click(function() { $("#dialog").dialog('open'); }); }); Which allows me to pop-up o...

System.InvalidCastException: Specified cast is not valid when inserting a record in LINQ to SQL

On my development machine everything is working fine, however as soon as I publish it to the server I get System.InvalidCastException: Specified cast is not valid This is happening on db.SubmitChanges(); I've check out https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=351358 and it still causes me e...

Reason for VS.NET 'current breakpoint will not be hit' warning?

Trying to debug a controllers action method, and when I attach to process the debug icon goes hollow and says the 'current breakpoint will not be hit' But I am doing a response.write at that point and when the page renders it does output the test text. So that section is indeed being executed, why does debug mode not work? ...