2
votes
3answers
59 views
Aggregating within the foreach loop
I have a loop:
<% foreach (User usedBy in discountDto.UsedBy)
{ %>
<%=usedBy.FullName%><br />
<% } %>
that often produces multiple lines with the same name:
Bob …
0
votes
3answers
81 views
Combine an ‘in-line IF’ (C#) with response.write
in a conventional C# code block:
"myInt = (<condition> ? <true value> : <false value>)"
but what about use inside an .aspx where I want to response.write conditionally:
<% ( …
0
votes
0answers
17 views
ASP.NET MVC: Binding to multiple models
I'm playing with an ASP.NET MVC application and I've run into a bit of a problem. I am pretty new to ASP.NET MVC and just barely understand the basics to get things to work at this point.
I have a …
1
vote
1answer
14 views
Execute Code on Every Request
I want to be able to execute some code on every request that stuffs data into ViewData. Currently I have a base controller class that all my controllers inherit from and I override OnActionExecuting …
0
votes
2answers
18 views
Value + Text for generated SelectList?
Hello
I have a problem with a generated droplist, it shows up like this:
<select id="selIntervalStartTime" …
1
vote
2answers
20 views
access Model object in jquery
I have a Model Customers, in which i have a list property PayHistory. I need to bind the table with the PayHistory object using jquery in my ASP.NET MVC (C#) application.
I am binding the table using …
0
votes
2answers
16 views
MVC iframe with classic aspx
Hi there, i have a MVC application that works fine; but now i need to put on one of the views, an IFRAME whose source is an ASPX page (classic aspx page, programmed in c#) the reason of doing that is …
3
votes
2answers
37 views
How do I get a collection of Session State objects in ASP.NET?
How do I get the collection of all Session objects in ASP.NET? (Note that I am NOT looking for a collection of objects stored in the Session object but all of the session objects themselves.)
This is …
0
votes
2answers
28 views
.net mvc pass dictionary data from view to controller
A while ago, I was trying to pass a dictionary data from my view to my controller. And I was able to do so after googling on the net(remember it was one of scott hanselman's posts). The solution I had …
0
votes
1answer
22 views
asp.net MVC return View - add variable in viewpath
i have different different pages which i want to call from one controller action
here is what i've done
public class TemplatesController : Controller
{
public ActionResult Select(int id)
…
0
votes
2answers
38 views
ASP.NET MVC with jQuery
Hi,
I'm currently attempting to retrieve a list of objects from my database using jQuery. I have been attempting to use getJSON but the callback is never fired. However, if I use
$.post(url, data, …
2
votes
0answers
13 views
ASP.NET MVC - test the controller returning different views depending on action method logic
Hi, my controller can return different views depending on action method logic. Action method 'Create' asks service to do some validation and persistence. If validation fails, action method returns …
0
votes
1answer
23 views
ASP.NET MVC Passing Lists to RouteData QueryString
The recommended approach for passing lists of values as a QueryString is
www.site.com/search?value=1&value=2&value=3&value=4
ASP.NET handles this well:
string value = …
1
vote
1answer
17 views
ASP.NET MVC & Windsor.Castle: working with HttpContext-dependent services
I have several dependency injection services which are dependent on stuff like HTTP context. Right now I'm configuring them as singletons the Windsor container in the Application_Start handler, which …
0
votes
1answer
18 views
RenderAction in ASP.NET MVC does not send RequestContext/HttpContext?
If I do this in my view
<% Html.RenderAction("RenderAdminMenu", "Shared"); %>
and then have this in controller action RenderAdminMenu:
RouteData rd = …
