Search Results

-2
votes
0answers
187 views

Possible bug in ASP.NET MVC Ajax.ActionLink? [closed]

I didn't get any response from my previous question about ASP.NET MVC Ajax.ActionLink...can someone help me? …
4
votes
6answers
207 views

What’s the best way to expose multiple objects to a view in ASP.NET MVC?

I'm kind of new to ASP.NET MVC and to the MVC pattern in general but I'm really digging the concept and the rapidity with which I can compose an app. One thing that I'm struggling with is how to e …
7
votes
6answers
657 views

How do you get access to the current System.Web.Routing.RequestContext from within a custom helper method in ASP.NET MVC?

I'm writing a helper method for ASP.NET MVC and I need to call Url.Content to get an appropriate URL for the context. However, in order to create a new UrlHelper() I need to get the current Reques …
1
vote
7answers
1k views

In ASP.NET MVC how can use I Url.Content() from code?

I'm trying to write a custom helper method that will output an image tag but I need to access something like Url.Content() to get a proper URL for the current context. Is there any easy way to do …
4
votes
4answers
248 views

How do you pass an arbitrary bit of data to a user control in ASP.NET MVC using Html.RenderPartial()?

I have a strongly typed user control ("partial") and I'd like to be able to pass it some additional information from its containing view. For example, I have view that's bound to a product class a …
0
votes
2answers
82 views

Context switching in an ASP.NET MVC view?

Is there a cost to using server tags in an ASP.NET MVC view? In other words, is the a context switch when you jump out of markup and into a <% %> block and what is the penalty paid in this inst …
0
votes
1answer
83 views

Validating dynamically created fields in ASP.NET MVC.

I have the following form in an ASP.NET MVC view: <%= Html.ValidationSummary() %> <% var fields = ViewData.Model; %> <% using (Html.BeginForm("Dynamic", "Candidate")) …
2
votes
2answers
207 views

Can you use ASP.NET MVC Futures library and MVC source code side by side?

I'm trying to using the Html.RenderAction<> method from the ASP.NET MVC Futures library. However, I can only make this work if my project references the System.Web.Mvc assembly in the GAC. If …
0
votes
2answers
324 views

Error when I try to use the MVC Futures library with the ASP.NET MVC source code in the same solution.

I get the following error when attempting to use both the MVC Futures library (Microsoft.Web.Mvc) and the ASP.NET MVC source code in the same solution: The type 'System.Web.Mvc.Controller' …
0
votes
1answer
42 views

What techniques work for abstracting session in ASP.NET MVC and maintaining testability.

I'm currently working on a large scale ASP.NET MVC application and one area where testing is failing is around things that we're storing in session. My first pass at abstracting session is just to …
1
vote
1answer
61 views

ValidateInput Attribute Doesn’t Seem To Work in ASP.NET MVC

I'm trying to get around the "potentially dangerous Request.Form value" error and I'm having no luck. Yes, yes, I've read all the other StackOverflow related questions and none of them seem to get …
1
vote

Validating dynamically created fields in ASP.NET MVC.

Figured it out. ViewData.ModelState is populated by the params in the response object. So with a dynamically created form you don't know exactly what was passed in the post. So I just recreate m …
4
votes

Ways to workaround whole page caching in ASP.NET MVC

I've done this with option 2 (using Html.RenderAction) with pretty good success. I also created different base classes for my controllers, one that caches and one that doesn't so that I put all of …
2
votes

ValidateInput Attribute Doesn’t Seem To Work in ASP.NET MVC

Well...answered my own problem...the culprit: Html.RenderAction<T>. If there are any calls to other actions in the request context (e.g. from the Master Page or child partials) …