asp.net-mvc

Asp.NET MVC 2 Preview 2: Area's aspx namespace problem

Hi I am now testing the new feature of MVC 2 Preview 2 called Areas within one project. Followed the MSDN article as well as the relase notes document I have created the Areas folder, then area's name folder, then Controllers and Views folders within that. Of course the route class was added and it works. Then I have moved one of the c...

I'm an ASP.NET programmer (Webforms). Should I switch to MVC?

I like having control over exactly what's going on under the hood (the MVC way), but I'm also lazy, and don't like writing tons of javascript GUI things. Should I or should I not switch to MVC? Thanks, Nestor ...

Custom Authentication on a Controllers Action Methods

Hi all, I'm new to asp.net mvc and I was wondering if there was any clean non repetitive way of running a check to see whether a user is logged in when any Action Method on a particular controller is invoked? Also is there a way to stop that method from being invoked and redirecting the user to a specified page? I'm using a custom authe...

How to mockup a base controller in asp.net mvc?

Hi I have a base controller that I made so I can pass data to the master page view easily. However this base controller gets a service layer passed into it and everything time I run my unit tests this service layer kills it since it tries to access some database stuff. private ServiceLayer service; public ApplicationControll...

How do I use a hidden value more than once in the same controller method/view?

I have a method that list listing directories and you can drill in the directories. The method looks like this: public ActionResult ListObjects(string Prefix) { if(string.isnullorempty(Prefix)) //Present root files and directories else //Present directory c...

Using Access DB (.mdb) with ADODB in C# (ASP.MVC) like with Classic ASP

Hi, I used to work a lot with classic asp. I'm currently trying the ASP.NET MVC and like it so far, but I'm missing the simple usage of the ADODB Connection. I was searching the web, for any simple and clear solution like the code below, used on classic ASP, but everything I found was way more complicated and/or not with ADODB on C#. I ...

Recommendation for the best multi month JavaScript plugin / solution?

I am porting over a site from ASP.NET to ASP.NET MVC. In the old site they used this calendar below and showed multiple months in one calendar: http://www.obout.com/calendar/calendar%5Fhome.aspx Any recommended solutions to replicate this in ASP.NET MVC with similar functionality? ...

Is it possible to refer method like property? Like Validate(x => x.Property)

Because I need to build a very strongly-typed & type-safed project for Asp.net MVC. But I found that a lot of syntax in View page isn't type-safed variable. Please look at the following example. BeginForm("LogOn", "Account") instead of Form.BeginForm(x => Account.LogOn) Is it possible to create something like above code? It's a ver...

How to enable .NET Extensibility, ASP.NET, ISAPI Extensions, and ISAPI Filters on Windows Small Buisness Server 2008

Today wanting to deploy an asp.net mvc application I had to enable .NET Extensibility, ASP.NET, ISAPI Extensions, and ISAPI Filters on Win Small Buisness Server 2008 I was surprised 1h and I could not find how to do it. This was the hint but ... still nothing. http://blogs.dovetailsoftware.com/blogs/kmiller/archive/2008/10/07/deploying-...

How to Mock up AuthorizeAttribute in asp.net mvc?

Hi I have my own custom Authorize Attribute and I am trying to check my controller methods to see if they have the correct roles in place. Now my custom authorize tag has database code in it. The ways I am mocking it up don't seem to work since the reflection stuff I found seems to to just pass no arguments so my default constructor i...

How to send a Model in jquery $.ajax () post request (asp.net MVC)

In doing an autorefresh by putting the following code,i assumed that when i do a post the model will automatically sent to the controller , $.ajax({ url: '<%=Url.Action("ModelPage")%>', type: "POST", //data: ?????? success: function(result) { ...

Restrict access to a certain action based on ID

Hi, Say that you have a controller named Buildings and that every user in the system have a set of buildings that he/she administrates. If you have an Edit-action in your controller that you can access with /Buildings/Edit/{id} is there a nice and simple way to implement some kind of authorization attribute that only allows access to th...

dot in name of GET & POST Request data (ASP.net MVC)

ASP.net MVC TryUpateModel or UpdateModel automatically bind HTTP Request (form & query string) as an object property using dot. For example, <input type="text" name="Person.first_name"> can be automatically bind to object Person.first_name The problem is having a dot in Query string and form can cause unknown issue in future. Anyway I ...

Popup using jQuery?

I'm trying to do a pretty simple thing, I believe. I need to popup a success confirmation dialog after a user clicks to add someone to his friends list. Simply there's an add link on the page with the url (mysite.com/add/friendname). I needed to make issue this request asynchronously so I used jQuery.ajax built-in function to send the re...

Readonly SiteMapNodes in ASP.Net MVC?

I'm using MVCSiteMap as a SiteMapProvider for my MVC site. I have a node set up like so.... <mvcSiteMapNode key="1" title="Product" controller="Product" action="Display" isDynamic="true" dynamicParameters="id"> <mvcSiteMapNode key="11" title="More Details" controller="Product" action="MoreDetails" isDynamic="true" dynamicParameters=...

ViewUserControl containing ViewPage

Is there a way to get a reference for the ViewPage that contains a parital view from the partial view ?? ...

RedirectToAction and partial views

I'm curious why it's made exactly like that? If i call this through AJAX: public ActionResult Foo(){ return RedirectToAction("SomethingThatReturnsPartialView","Bar"); } It won't return me partial view in AJAX callback but will redirect to url that represents action. So - why it is so? What are possible workarounds? ...

scheduler like google calendar in MVC

I am trying to integrate a calendar plugin like google calendar with custom database and code with asp.net MVC in C#. It needs to handle Day/Week/Month Events in the Calendar as like google calendar. I found the similar plugin in jquery http://www.webappers.com/2009/08/04/jquery-weekly-calendar-plugin-inspired-by-google-calendar/. But...

href path in aspx files in area

Hi I am continually testing the new feature of ASP.NET MVC 2 Preview 2 called: "Areas within one project". Currently I have a problem with linking to css and js files from within aspx code. When the url points to an url without the id, everything works fine: http://mysite.com/area/controller/action The problem appears when the url...

How ASP.NET MVC removes ViewState from application?

I'm looking in ASP.NET MVC source and don't found where ViewState is removed from application. (The ViewState is not just disabled, it is removed of all pages in application) Thanks! Update: Is remove Viewstate hidden field possible? ...