3
votes
2answers
318 views
How do I use Windsor to inject dependencies into ActionFilterAttributes
Having seen how NInject can do it and …
0
votes
2answers
349 views
Calling FilterAttribute’s OnActionExecuting before BaseController’s OnActionExecuting
I have a BaseController in which I put in some data in the ViewData collection by overriding OnActionExecuting.
Now i have an Action in a ChildC …
1
vote
How to return a View in MVC with URL like this http://localhost/admin#sayhi
the '#' character is used for page internal bookmark links and should not be used for server side logic. so linking to a page with your #sayhi url, the browser will go to that page and scroll down …
2
votes
ASP.net MVC: Getting a Paritial View’s HTML from inside of the controller
You would create your action like this:
public PartialViewResult LoginForm()
{
var model = // get model data from somewhere
return PartialVie …
0
votes
server side validation, how to pass errors to view in MVC?
I use the builtin ModelState object hold my validation errors. Validation is done either in binding or by hand supported by manually adding the errors like this:
ModelSt …
1
vote
jQuery vs MicrosoftAjax in ASP.NET MVC
I have tried to use both more or less side by side.
The builtin ajax helpers works fine.
But jquery has a smaller footprint and is more transparent in use.
And when using th …
4
votes
How do you redirect to the calling page in ASP.NET MVC?
You should provide a RedirectToUrl parameter from the posting page.
Relying on referrer headers is not a good practice.
Instead, do something like this:
public Actio …
10
votes
jQuery Forms Authentication with ASP.NET MVC
Yes, it's possible.
Just submit the login-form using the method descri …
2
votes
What are some projects which are examples of best pratices for ASP.NET MVC?
Consider Code Camp Server, besides being a good MVC example it's also a good example of some of the practices from Domain Drive …
1
vote
Why does Visual Studio crash opening ASPX with MVC RC1
I've had problems like that before. It was the webform editor. If you right-click the aspx file and choose "open with..." and select Html-editor the ide will most likely not crash on you.
T …
8
votes
ASP.NET MVC - Current Action
In the RC you can also extract route data like the action method name like this
ViewContext.Controller.ValueProvider["action"].RawValue
ViewContext.Controller.ValueProvider["control …
0
votes
jquery getJson not passing any values to controller
You will have to fix your route and replace {id} with {search} in order to get it to bind to the correct parameter - try something like this:
routes.MapRoute("search", "Home/Results …
0
votes
C# MVC: What are the real advantages to using Modelbinders?
Here's another benefit:
You can create modelbinders that retrieves an object from the database just given an ID.
This will allow you to get actions like this
// GET …
1
vote
Change menus depending on controller in ASP.NET MVC
You can do a
ViewContext.Controller.GetType().Name
That should do it.
…
0
votes
Can’t get search result for searching for ajax form
You can pull MyList out into a Partial view, MyPartialList.ascx
Your search actionresult should then return this partial view, something like this:
public Actio …
