The mvcextensions tag has no wiki summary.
1
vote
0answers
99 views
Custom Menu item on right click of Controllers folder in MVC application
Can I add a custom menu item,let say "Add xxx Controller" to right click menu when user click on Controllers folder in MVC application.
Regards,
Patil
0
votes
2answers
89 views
how to create a cookie in javascript and use in controller in mvc3
Actually I am having a requirement like :
I need to get the ID's of checked records by using Javascript and store the id's in a cookie and access that cookie in controller and delete the records ...
0
votes
2answers
330 views
Get Paging,Filtering from Telerik extension grid and pass to stored procedure
I would like to use the MVC grid filtering but don't want to use linq. Current examples use linq to do the filtering. However, I want to pass the filtering options to a stored procedure. Do you have ...
2
votes
3answers
728 views
How to fix “File does not exist” error after adding ignore route for favicon
I am using ASP.NET MVC 3. I am also using Autofac and MVC Extensions. The error that I initally got was:
The controller for path '/favicon.ico' was not found or does not implement IController.
I ...
1
vote
0answers
208 views
FluentValidation + MVC Extensions (metadata) won't work together
for my project i use two libraries:
FluentValidation (http://fluentvalidation.codeplex.com/) for view model validation
MVC Extensions (http://mvcextensions.codeplex.com/) to fluently configure ...
4
votes
2answers
86 views
MVC3 Html.BeginForm() with additional HTML
I am writing some code where I would like render a MVC BeginForm but to also include additional HTML.
For eg.
@using (Html.BeginMyCustomForm()) {
}
And this spits out
<form action="" etc>
...
0
votes
1answer
210 views
Howto configure complex types in ASP.NET MVC (4) with MvcExtensions
I have a Model with some complex Properties:
public class TestModel
{
public string Prop1 { get; set; }
public SubClass Prop2 { get; set; }
}
public class SubClass
{
public string Test { ...
0
votes
3answers
412 views
Automapper asking for MVC3 reference in a MVC4 app with MvcExtensions
I am using ASP.NET MVC 4 RC and the latest version of MvcExtensions and MvcExtensions.Autofac.
I don't know if MVC 4 works differently to MVC 3? The code below is how I used it in my MVC 3 ...
0
votes
1answer
203 views
Areas not displaying in MVC 4 using MvcExtensions
I am using ASP.NET MVC 4 RC and the latest version of MvcExtensions and MvcExtensions.Autofac.
I don't know if MVC 4 works differently to MVC 3, but my areas aren't displaying at all when using it ...
0
votes
1answer
160 views
What is your opinion on using MVCExtensions with Autofac
I would like to know your opinion on using MVCExtensions with Autofac..
I am using MVC Extensions with Autofac in my MVC 3 web app. I'm just not getting it why these extensions were created? I ...