2
votes
3answers
17 views
Populating DropDownList based on another DropDownList
Hello everybody,
I am having trouble getting the functionality we want in our Create View in our ASP.NET MVC application.
We have got two DropDownLists in our Create View.
One is a selection of …
0
votes
2answers
27 views
Post request issue
I want to make a post request and i do like this:
function Xxx_Click() {
var params = new Array();
var p1 = new Object();
p1.Name = "id";
…
2
votes
1answer
19 views
ASP.Net MVC 1.0 in Visual Studio 2010
Is Visual Studio 2010 compatible with MVC 1.0
Hello guys,
Thanks for reading in advance.
I'm working with a MVC 1.0 project and VS2008.
I will be very glad to upgrade to VS2010, but I'm doubting …
13
votes
9answers
212 views
asp.net c# MVC: How do I live without ViewState?
I am just looking into converting WebForms to MVC:
In .net MVC, what concepts make ViewState something thats not required?
If a form is posted back on iteself etc (ie a postback)? how does the …
1
vote
1answer
35 views
ASP.Net MVC 2: Breaking changes
What will be broken after migrate to MVC 2?
Hello guys,
Thanks in advance for reading. : )
I wonder what breaking changes will come with MVC 2, so how traumatic will be the migration?
How much …
0
votes
1answer
16 views
Does EntityFramework work against an Access 2007 db (.accdb)?
I'm trying to create an MVC application that uses an Access 2007 DB (.accdb). I can create the Model using DataSet. But if I try to create a Model using EntityFramework, I can't get past VS2008 …
0
votes
1answer
18 views
When my View POSTs a Model back to my Action, how do I save it back to the database it came from?
I'm kind of confused...
I have one action that takes an ID, loads up an object, and passes it to the View which is bound to the Model of that object's type.
After editing the data in the form …
0
votes
2answers
37 views
Progressive Loading, ASP.NET MVC
I have a page that has to render a huge set of query results - most of them with very, very small images. It is already paginated, so that won't solve my problem.
The query executes fine - it's very …
1
vote
2answers
28 views
Don’t want RedirectToAction() escape “plus” characters
I'm trying to do something similar to what Stackoverflow is doing.
I have a quick search text box and I can put an arbitrary number of words into in and submit my search. Receiving action does this …
0
votes
2answers
23 views
ASP.NET MVC 2 One Route Works, One Route Doesn’t
I have two routes in my ASP.NET MVC application.
The first is working fine - it's an ActionResult that returns a view.
The second is on the same controller and is an ActionResult that returns a Json …
0
votes
2answers
13 views
post action for url.action?
Hi All,
Here is a line of code in my Controller class:
return JavaScript(String.Format("window.top.location.href='{0}';", Url.Action("MyAction", "MyController")))
Is there a way to make it use the …
0
votes
2answers
16 views
ASP.NET MVC 2 Dynamic Layout
Hi,
how would you guys create a dynamic layout in ASP.NET MVC 2 where admins could select widgets to display, arrange them, disable, move them etc.? I mean a flexible layout that can be changed via …
0
votes
0answers
15 views
Replacement for ITemplate in MVC?
I am currently running a website, i use a control that inherits from ITemplate to wrap all my usercontrols in.
basically what it is, is a table with a nice border, and i am able to dump anything in …
0
votes
1answer
20 views
Forms authentication on different hostings
Hi have form authenticaion for my site, and it works fine on localhost and godaddy, but after moving to another hosting it stop working.
After login in admin area after 2-3 minutes I redirecting back …
1
vote
2answers
16 views
OpenId ASP MVC Authentication with long expiry
Stackoverflow uses OpenId as many other websites. However, I rarely need to provide my OpenId to Stackoverflow while with other OpenId enabled websites, I have to do it once a day or week.
This …
