Search Results

0
votes
2answers
290 views

How do you handle attaching JavaScript to UserControls in ASP.NET and keep multiple instance isolated?

Lets say you need to attach some JavaScript functionality to an ASP.NET User Control of which there might be multiple instances on any given page. Because JavaScript has shared global state, what …
7
votes
6answers
653 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
1answer
82 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")) …
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 …
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) …