(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?
...
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...
Hello,
Is there a way to Set Jquery's autocomplete Http submission method to POST instead of GET?
...
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?
...
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[] { ' '...
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...
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...
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?
...
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/
...
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...
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...
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...
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...
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...
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...
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 "...
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 ...
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...
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...
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?
...