1
vote
1answer
42 views
Troubles creating a proper lambda expression…
This is the code I need to alter:
var xParam = Expression.Parameter(typeof(E), typeof(E).Name);
MemberExpression leftExpr = MemberExpression.Property(xParam, this._KeyProperty);
E …
0
votes
4answers
43 views
Seemingly simple MVC partial view question
I am trying to display my data (images) in two columns of a table in my partial view. The code below does not seem to work as it displays each image in its own row. What am I missi …
0
votes
1answer
15 views
Problem using OrderBy with the entity framework and ObjectContext.CreateQuery(T)
Hi,
I'm having troubles using this method:
public ObjectQuery<E> DoQuery(string columnName, int maximumRows, int startRowIndex)
{
var result = (ObjectQuery<E>)_c …
0
votes
1answer
30 views
Can ASP.Net MVC routing account for a “OR” option?
I have this routing setup at the moment
routes.MapRoute(
"OldPages", // Route name
"page{id}.html", // URL with parameters
…
2
votes
2answers
28 views
How can I unit test views and authorization attributes of my asp.net mvc application in nUnit?
I'm at a point where I'd like to start writing unit tests for my MVC application. I've already figured out how to unit test the controller and I can unit test my underlying busine …
1
vote
3answers
21 views
Considerations for changing a page’s URL in a CMS
I have written a CMS for a website. You can create pages and do all things you would expect but I am just wanting your opinions on what to do if a user changes the URL of a page. …
0
votes
1answer
24 views
asp.net MVC ddd DRY vs loose coupling and persistance/data access layer
So as I understand it with good loose coupling I should be able to swap out my DAL with a couple lines of code at the application root.
I have 2 DAL written, Linq-to-sql and a JSo …
1
vote
1answer
18 views
I am trying to use openid for my website. Can someone please point me to a asp.net mvc working sample that uses openid
Due to lack to time i cannot dig google and get information about openid and then implement it. Can someone please point me to a working asp.net sample that explains how openid wor …
0
votes
2answers
29 views
asp.net MVC confused by custom attributes creation
hi i am trying to create a custom attribute for my MVC application so that i can call [CheckLogin] this is to check my cookie as i am not using forms authentification.
i have crea …
0
votes
0answers
14 views
Correct Controller code for a 301 Redirect
I am designing a new dynamic site from a static site. I have the route all sorted but I have a question on my Action method.
Below is the code but when testing and looking at the …
1
vote
7answers
69 views
Asp.NET MVC Customer Application
I'm designing (and developing) web software that will allow the general public to sign up for a service, become a customer, and exchange fairly sensitive data.
I'm working through …
2
votes
3answers
34 views
Encapsulating User Controls in ASP.NET MVC
Sorry if this is a basic question - I'm having some trouble making the mental transition to ASP.NET MVC from the page framework.
In the page framework, I often use ASCX files to c …
0
votes
5answers
114 views
Should I learn ASP.NET MVC or the Zend Framework? [closed]
I'm an amateur PHP programmer and want to know if I'm better served by going with the Zend Framework, or if I should learn ASP.NET MVC?
Which has better 'free' resources on the in …
2
votes
2answers
35 views
What is a quick way I can add simple authentication to a few ASP.NET MVC routes, without implementing the whole Membership provider jazz?
I've created a demo website for my boss and one of the requirements is I need to add some simple authentication to his 3 admin views/routes.
What is the simplest, quickest way I c …
0
votes
2answers
88 views
ASP.NET MVC: is it a good idea to return a File result from a byte[] ?
I have an action in one of my controllers which creates a downloadable zip file which should be served to the user. Currently my code looks something like this:
using(var memorySt …
