Tagged Questions
0
votes
3answers
37 views
Parameter not getting passed in AJAX call
I am using the following code
function test()
{
GetAttributesForSelectedControlType('Phone Number');
}
function GetAttributesForSelectedControlType(questionType) {
alert(questionType);
...
-2
votes
2answers
16 views
books recommendations for MVC 4
What would you recommend to read for a relatively experienced .net developer but who has no yet experience in ASP.NET, but needs to learn MVC 4?
1
vote
1answer
38 views
MVC Rendering incorrectly with specific CSS selectors
I am currently working on a project using C#.NET MVC (Razor).
I have come across a problem where text output is rendered differently if it is inside an html block with a css selector using a very ...
0
votes
2answers
29 views
Entity - Automatically Create MVC Controller with dropdown
There's probably a really basic answer to this question but I am new to Entity and MVC and am getting used to the basics.
I'm trying to automatically generate a MVC controller for the main table ...
0
votes
1answer
41 views
.Net Web API throw exception/return response/return error response for 404/400 response?
I am developing some restful web service using .net web api.
I need to return 404 (NotFoundStatus) or 400 (BadRequest) to the client for some scenarios.
It seems like that there are many ways to do ...
2
votes
1answer
22 views
IIS Server and Windows File System soft links
I have 1500+ websites running under a single instance of IIS Server version 7.5 (Windows 2008 R2 Server OS). Each website is running under its own app pool. Each website has an MVC application that ...
0
votes
0answers
17 views
Generating DTO classes from DbContext via Text Templating
Please bear with me as I am new to MVC and WCF and may be asking the wrong question.
I am trying to write a WCF service and an MVC web application over an existing project that contains entity, data ...
0
votes
0answers
15 views
Knowing Class Hierarchy in the project solution following MVC
I have been given two applications : One in which functionality is already implemented but analysis is required to know how it was implemented and the other application in which functionality has to ...
0
votes
2answers
35 views
.Net 4.0 and .Net 4.5
I am planning to develop a new mvc website with .Net Framework 4.5. But I have to do some maintenance work for an already existing mvc website which is built on Framework 4.0. Will there be problems ...
2
votes
1answer
165 views
.NET and Skinny Controllers/Fat Models Concept
I've been reading about "skinny controllers, fat models", and I see a lot of these implementations are Ruby and other languages. I don't see many implementations in .NET, though I'm not sure if that ...
0
votes
1answer
157 views
Render MVC Partial View in non-MVC project from an MVC referenced DLL
I know from that subject you're probably thinking "what the hell". But let me explain!
I have two projects:
MyMVCWebsite - An MVC Website running on windows azure
MyWebsiteWorker - A separate DLL ...
1
vote
3answers
220 views
tiered webforms classified as MVC?
Where I work, we have a project, written in .NET3.5 as a webforms project. It is tiered; presentation layer, logic layer, and data later.
We have these weekly 'tech sessions' at work. I gave a ...
-1
votes
3answers
926 views
Is MVC RESTful by design
Does MVC have to be RESTful?
Is there a way to make a SOAP service using MVC pattern?
Would the input request actually go into the View first and then into the Controller then the Model eg:
Request ...
0
votes
2answers
650 views
Entity Framework doesn't create Database
i'm creating a database with entity framework, in an mvc asp.net application, using code first.
I'm new to the argument so be patient... I've created the database for the first time and all seems to ...
0
votes
1answer
373 views
How to change Mvc Pie Chart colors?
I have a chart typeo of pie and need to change the colors that used as default settings in Mvc chart !
This my chart series
<Series _Template_=""All""
ShadowOffset=""2""
BorderColor=""64, 64, ...
0
votes
1answer
510 views
Can't get HTML5 Cache Manifest working
I've build a small web app for the iPad which I was hoping to be able to run offline by using the manifest cache but I can;t get it to work.
I am serving the cache-manifest file as a MVC view and ...
5
votes
2answers
2k views
Remove a value from querystring in MVC3 and redirect to the resulting URL
I'm working on a seemingly simple issue: in my Authorization filter I'm checking for a few things if one of the conditions is not met, I need to remove certain values from the Query string and ...
1
vote
1answer
663 views
MVC/MVP framework to develop Winform/Wpf/Metro style application
I am looking for a good MVC / MVP framework for developing windows application in .net. It would be great if the framework supports Winform, Wpf and Metro style application. Though the requirement is ...
1
vote
2answers
168 views
IPagedList - 2 different sources
I have to implement Paging for keyword search results. The search may return Home results and community results. (This is for a real estate site). So there are 2 types to display. I need to implement ...
1
vote
1answer
315 views
resource not found error vs2010, mvc application
I got the below error when i set the properties of visual studio in WEB--->Specific Page
I set the specific page to /Views/Shared/Index.cshtml
Description: HTTP 404. The resource you are looking for ...
0
votes
1answer
321 views
MVC 3: Uncertain of RegisterGlobalFilters Behavior
I've setup the ReisterGlobalFilters method like this in my Global.asax:
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
...
2
votes
1answer
263 views
MVC Integration Testing with AuthorizeAttribute
On an intranet site using windows authentication, and certain controller methods being marked with the "AuthorizeAttribute" controlling access to certain users/groups and roles, I'm trying to figure ...
4
votes
2answers
738 views
Using WiX to generate an installer for an ASP.Net MVC website
Has anyone used WiX to generate an installer for an ASP.Net MVC website? Do you harvest files from the web project? I can’t find any good examples of this being done. There doesn’t seem to be a ...
1
vote
0answers
238 views
error when creating controller scaffolding, Unable to retreive metadata for
So I'm working my way through this tutorial on Creating an Entity Framework Data Model for an ASP.NET MVC Application, in the hopes of being able to use the entity frame work to access linked tables. ...
0
votes
3answers
2k views
“Could not find installable ISAM” error when trying to parse an excel spreadsheet
I am posting back a xls file and getting the error "Could not find installable ISAM" when filling the adapter. I have office 2007 32 bit , running xp 64bit
UPDATE changed connection string to 12.0 ...
1
vote
1answer
229 views
ASP .NET MVC 2 - Browse and add link to document
I am developing an internal project managment dashboard using MVC 2. One of the requirements is to link to already existing documents on one of our local servers, in other words, browse to server, ...
1
vote
2answers
1k views
Change date format in Datetimepicker
Where i need to change in the below code to change date format for datetimepicker in the following javascript:
...
0
votes
1answer
91 views
About authentification, access rules and multi views
In my ASP.Net MVC3 project, I have 3 roles; manager, admin, superadmin - although there may be more in the future. There is also different views with tables and fields (manager can see 5 fields of the ...
0
votes
1answer
1k views
Component Registration Exception with windsor
I am trying to register a new component in my mvc application using windsor..
First, I referenced to all windsors dlls..
Then I used this code:
public class WindsorControllerFactory : ...
1
vote
0answers
154 views
Creating a view for a many to many relation ship in .net MVC
I'm creating a MediaLibrary in MVC.
I have a "MediaType" Model and a "Support" model.
Each MediaType (Film, Game, Music) can have n Support (CD, DVD, BluRay,...).
I created the models and added the ...
0
votes
1answer
164 views
Why is the view not refreshed? (.Net MVC)
I am learning .Net MVC. I have a page where I show productlines. I want to filter the productlines by their suppliers via a dropdownlist.
My controller:
public class ProductlineController : ...
0
votes
1answer
216 views
Custom Mapping in Nhibernate
Im just trying out nHibernate and I want to use a generic class to map several tables. How can I achieve something like this by using nHibernate with sql aggregation? Also, by mapping several ...
1
vote
1answer
987 views
MVC 3 create Microsoft Word report Document
I have a project where I need to create a Word document report based on some items which custumer can choose on MVC 3 (Razor) website.
Is it possible in any way? The only solutions I can find is ...
0
votes
1answer
222 views
Why should one unit test MVC routes? [closed]
I see that people have ask more specific questions, but mine is broad, why should one test any routes at all? where does the benefit of this really shine? Thanks!
PS currently doing this in .Net C# ...
1
vote
1answer
124 views
Disable request parameters binding when calling child action
I render a view for an action with this url: "/search?a=1&b=2"
The correspoding action is:
public ActionResult Search (int? a, int? b)
Inside it's view I need to call this child action:
...
0
votes
1answer
145 views
.NET MVC Controller Exception
[HttpPost]
public JsonResult CreateUser(UserCreateDTO dto)
{
Entity.User Us = new User();
Us.Name = dto.Name;
Us.Surname = dto.Surname;
Us.Username = ...
0
votes
1answer
70 views
Foreign character mystery
I'm using the MVC startup template and added mvcscaffolding. Everything worked fine, when all of a sudden some views started displaying swedish characters wrong. For example:
The file - Edit.cshtml ...
0
votes
1answer
93 views
About coding style of MVC.net
I'm a control developer and I'm trying to design a MVC.net control. When I researched some of the MVC controls like MVC toolkit, Telerik and DevExpress etc, I'm confuse which coding style is the ...
2
votes
3answers
871 views
mvc windows authentication allow all users from domain
I have an mvc intranet application using windows authentication. It currently has one controller with three actions.
The first action (index) should be available to everyone, this is no problem. The ...
2
votes
3answers
122 views
Does the Display attribute in the model violate separation of concerns from view and model
Might be a stupid question.
But doesn't specifying the caption in the model using the Display attribute violate the separation of concerns principle? Shouldn't the caption belong in the view?
If it ...
0
votes
1answer
484 views
MVC 3 Ajax.ActionLink and return new element generated by helper
I have on my page image:
@Ajax.ImageActionLink(Url.Content("~/Content/images/star-off.png"), "AddToFavourite", "Добавить в избранное", "img_add_to_favourite", null, new AjaxOptions() { HttpMethod = ...
4
votes
2answers
3k views
Send MVC actionresult to printer
I have a controller with an action:
SomeController/ActionToBePrinted
ActionToBePrinted() returns an html view.
This action is called from a normal mvc razor view when pressing a button - how would ...
0
votes
0answers
242 views
Saving an XML Object to a web service c# .NET MVC
I'm working off a posted solution from another user on stackoverflow found here:
Consuming REST Web Service in .NET MVC 3
My problem occurs when I try to post XML back to web service, in order to ...
0
votes
3answers
90 views
Debugging .NET web application during integration testing
I am writing some integration tests for an ASP.NET MVC application, and I am wondering how you can get breakpoints to be hit in the web application after firing a web request at the application.
To ...
1
vote
3answers
505 views
.NET MVC 3 Search in controller
I'm new to .NET. I'm trying to do something very simple.
I would like to perform a search on a Model in my controller and retrieve the first entity returned :
var cercueils = from y in db.Cercueils ...
8
votes
0answers
929 views
Are there .Net/C# web frameworks similar to Play! Framework for Java? [closed]
I played around with ASP .Net MVC 2 a few years ago. It was a nice MVC framework.
Right now, I'm discovering Play Framework for Java/Scalla, and it rocks much more than I remember ASP .Net MVC ...
3
votes
2answers
397 views
MVC with 3Tier Architecture, Entity Framework and DependencyInjection [duplicate]
Possible Duplicate:
DAL -> BLL <- GUI + composition root. How to setup DI-bindings?
I'm defining a new solution and i've created some projects:
WebUI
Domain (contains my entities)
...
1
vote
1answer
463 views
Separating display from business logic in WinForm application
I have some GUI controls in WinForms application. For example i have log control which logs each progress application makes so i can debug quickly, currently all "databinding" is on MainForm. I can ...
0
votes
1answer
204 views
Paging the data in .net MVC, and need to pass data between different Views
.net MVC 2.0 question:
The main problem is I want to paging my data in Arraylist and show them in different pages in the View. (I want to paging data on client side because on my server side, data ...
8
votes
2answers
759 views
RenderSection() issue in _ViewStart.cshtml
I have following code snipped in _Layout.cshtml
<div id="sub-navig-container">
@RenderSection("subNavig")
</div>
<div id="text-content">
@RenderBody()
</div>
when i ...