0
votes
0answers
7 views
MVC and Umbraco integration
I've followed the steps from http://memoryleak.me.uk/2009/04/umbraco-and-aspnet-mvc.html and integrated MVC in Umbraco with success, but i still have a problem which is critical for me.
Is there any …
0
votes
2answers
26 views
How to modify request headers in c#,ASP .NET.
I am working on a ASP .NET mVC project & i have to change HttpHeaders. see the foolowing code snippet:
WebRequest req= HttpWebRequest.Create("myURL");
HttpWebResponse response = …
1
vote
1answer
22 views
ASP.NET MVC & Silverlight
Should an ASP.NET MVC Developer start to learn Silverlight either?
0
votes
1answer
12 views
Can the MasterPage be designated from the Controller?
I have a couple different userTypes (Admin, User) and a MasterPage for each. I am beginning to create some Views that will be used by both userTypes where i would like to assign the MasterPage …
0
votes
2answers
43 views
What Open Source Software has Quality ASP.NET MVC C# code
I am looking to read other peoples software to learn how to produce quality, speedy, reusable code. If the code has JQuery in it that would be great because I am learning JQuery as well. Thanks
1
vote
2answers
28 views
Which is the best MVC v.2 learning source?
I would appreciate some suggestions about useful sources for learning the new features of MVC v.2 Beta .
and the real question is how to learn the features of the MVC 2 before release ?
0
votes
1answer
20 views
How do I find out at runtime what area a controller is belong to in asp.net mvc?
Since this stuff is fair new I couldn't figure out any good reference on it.
I want to use reflection to enumerate through all the controller in my application. This is not hard using reflection. But …
0
votes
1answer
15 views
build custom control common for both ASP.NET web application and Web form application
Hi all ,
I have to create a custom control that just renders scripts like object tag and some javascript file path ...
and this control is going to use by both MVC and asp.net webform application
…
0
votes
2answers
26 views
Do MVC helpers encode the Attribute Values?
ie
new{@class="Model.Class"}
?
0
votes
2answers
20 views
Accessing Page URL from within Partial View in MVC
I have a page which has a partial view included within a div called test. I may request more content to be placed within this div by receiving back a PartialViewResult.
I want to be able to obtain …
0
votes
2answers
25 views
ASP.NET MVC 2 Preview 2 under Mono in Linux
I am actually successfully running a production website with ASP.NET MVC under Mono in a Ubuntu LTS Linux. This server is located somewhere in the cloud and it rocks!
Today, I have tried to make it …
0
votes
1answer
15 views
Strongly typed links in ASP.NET MVC 2.0 beta
With ASP.NET MVC 1.0 I always have been able to generate strongly typed links in my Views using a lambda function:
Html.BuildUrlFromExpression<TController>(c => c.Action(arg));
I'm now …
0
votes
1answer
23 views
What is equivalent GetPropValue<T> method in L2E ?
Hi people.
I´m have a problem using EF for my data model.
I have this code in my method:
listaPaginada = sortOrder.Equals("asc") ?
…
0
votes
1answer
37 views
Best MVC Practices for implementing website search
I have a website that has PageContent, News, Events etc and I have a controller that will handle the search.
In that controller action method I guess I do a var results = …
0
votes
2answers
19 views
Add a sitemap provider at runtime in asp.net (MVC framework)
I'm building a regionalized site each region has it own sitemap and own content.
The regions can be added at runtime.
Is there any way to add a sitemap provider at runtime?
UPDATE:
I need multiple …
