0
votes
2answers
38 views

unable to browse asp.net mvc 4 page

I'm not sure what I did, and this just happened today. I am unable to browse one of my MVC 4 applications, which I was previously able to do. There's no error message. When I right click on my ...
0
votes
1answer
22 views

The templates had the following errors when running

When I try to add a strongly typed view in ASP.NET MVC 3, I get the following error: I restarted Visual studio, rebuild the project, tried again to add a view and got the following: My model: ...
0
votes
1answer
31 views

Maintaining Javascript Code highlighting inside @section tag with Razor

I've joined a new dev team. They have javascript & knockout inside a @section {} declaration in their razor views. The javascript has no color highlighting at all, how can I get around this? ...
0
votes
0answers
28 views

Why does debugger show errors in browser and not break into code

Basically whenever I debug through my asp.net MVC application and hit an unhandled exception I get the error in the browser - it doesn't step into the application as usually allowing me to view ...
5
votes
2answers
106 views

How to return IQueryable<T> for further querying

I'm trying the PagedList.Mvc library from here https://github.com/TroyGoode/PagedList which has this usage sample var products = MyProductDataSource.FindAllProducts(); //returns ...
0
votes
1answer
87 views

The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

After signing the third parties assemblies and adding them to GAC I am getting the below error: also the Assembly Binder Log Entry shows this error It says mismatching assemblies not sure how ...
0
votes
1answer
128 views

Could not load file or assembly ' Version=3.0.1.0, PublicKeyToken=null or one of its dependencies.A strongly-named assembly is required.

In my application after giving the assemblies strong key names including the third parties DLLs with VS 2012 Command Prompt I get the assembly loading error. Could not load file or assembly ', ...
2
votes
0answers
79 views

How to fix “unable to set field/property…on entity type”

I am new to ASP.NET and cannot find a legit response for the Exception I am getting. I have a basic contact entity set up like this. using System; using System.Collections.Generic; using ...
1
vote
0answers
33 views

Razor: use Layout file of other Application

I have a MVC4 Webapp (1) with a Virtual Directory under it which contains another independent Webapp, like so: MainApp Areas SUBAPP <------ THIS is a Virtual Directory with its own ...
1
vote
3answers
89 views

Making a Class iEnumerble

I have the following class namespace TaxiResults.Model { public class SearchResult { public string status { get; set; } public SearchResultResult result { get; set; } } public class ...
1
vote
1answer
41 views

Access site from public ip

When I debug my asp.net mvc3 web application on http://localhost:11118/ using microsoft visual studio and it works perfectly. But when I try to view it on http://MYPUBLICIPADRESS:11118/ I get a HTTP ...
0
votes
1answer
24 views

Importing views in CSHTML

I am working on a project in Visual Studio with a MVC design, and I would like to import 3 different existing functional views with their own models into one view, controlled by tabs to see the other ...
0
votes
1answer
158 views

Can you add ASP.Net MVC 4 Intranet Template to existing empty project

I started a Visual Studio 2012 project by creating an asp.net MVC 4 empty project. I would like to know if I can add the authentication membership provider, bundling, css, javascript that come ...
2
votes
1answer
66 views

Why causes the asp.net Cannot create/shadow copy error?

Several times a day I receive this error while running my asp.net mvc4 project. I am not asking what that means, or how to fix it, but what am I doing to cause it? It is really starting to bug me, and ...
2
votes
1answer
47 views

Issue running MVC project while editing a View

To put it simple, whenever i run (debug) my MVC project while focusing a View (in the editor window) on Visual Studio 2012, the web page shown on the browser is the View itself rather than the actual ...
0
votes
3answers
81 views

How to view all Session key/value pairs while debugging?

When debugging in Visual Studio (.Net MVC4), is it possible to see all Controller.Session key/values at once? I can view all keys by typing Session into QuickWatch and expanding "Results View". E.g: ...
0
votes
1answer
100 views

error opening a crystal report on development machine

I get error Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack when trying to programmatically display a Crystal Report developed in the Crystal Reports ...
11
votes
3answers
259 views

How can use razor Comment on JavaScript block/

When I create a razor comment block into a script block in cshtml file, the javascript intelisense gives me error. How we can solve this? hint: I use VisualStudio 2012 and Resharper 7.1.2 I know that ...
1
vote
1answer
107 views

Coded UI Test Builder won't record actions within the Visual Studio window

I have an MVC web application that I wanted to try out coded ui tests on and it sounded simple enough. I would say that starting up the web app would be a pretty important part of the test but the ...
0
votes
0answers
101 views

VS 2012 Error in adding any references OR installing and updating any packages (loading type library/DLL)

Visual Studio 2012 RTM I have a MVC website project and i have some problem with adding some references; EDIT: My Visual Studio has some problems (More info in stackoverflow) I can't add any ...
-3
votes
1answer
47 views

Controller with read/write

I am using Visual Studio 2012, how i can create a Controller with read/write actions and views if i have done database, not using a model class like this public class Movie { public int ID { ...
0
votes
1answer
42 views

MVC Controller Wizard not appearing when creating a new Controller in VS 2012

This is specific to one particular project. Probably missing some directives in Web.Config. Trying to figure out what those directives are. I could probably do some diff compare with a project ...
0
votes
0answers
57 views

Running database script Hosting to IIS on pre built web application?

I am trying to run this sample web application in visual studio 2012 ASP.NET MVC 4 Sample (Magazine website) http://code.msdn.microsoft.com/ASPNET-MVC-4-Sample-37924d68#content But I am new to MVC ...
1
vote
1answer
429 views

Visual Studio 2012 warning MSB3026: Could not copy dlls

I keep getting warning MSB3026: Could not copy dlls errors. I have several projects in the solution. On build I also get error: Error 47 Could not copy "myapp\bin\Debug*.dll" to "bin*.dll". Exceeded ...
0
votes
1answer
136 views

Why does Visual Studio 2012 create content folders for Web API projects?

I find this odd given that a Web API project should really be a view-less MVC 4 Web API based project. Is there any reason for these projects to contain these files by default? I would like to ...
0
votes
0answers
43 views

error CS1704: DLL loaded twice ? -razormachine

I want to use RazorMachine on my VS2012 MVC 4 .NET webapp, called "Haas2013". Everything is working, until I hit a line where I actually call RazorMachine. I keep getting this error: error CS1704: ...
0
votes
2answers
118 views

visual studio not updating html / javascript to server / browser

This is an MVC 4 app using the Hot Towel SPA template. Whenever I change anything in the HTML and/or javascript the only way I can get the new code to display is to clear the browser cache. F5, ...
0
votes
1answer
77 views

Generate Local Resource fails on asp.net mvc views?

Trying to localize a large existing MVC website, using Visual Studio 2010, MVC 4. If I switch a view to the design view and then select Tools -> Generate Local Resource, none of the html text is ...
-1
votes
1answer
600 views

Jquery UI Autocomplete with MVC 4

I am using the jquery ui autocomplete in MVC 4 with Razor HTML. I am able to use it ok with hard coded values but I was wondering how I can connect it to the database so the the values coming up don't ...
0
votes
1answer
63 views

Delete Method based on condition in MVC 4

I have created an application in MVC 4 using Razor HTML. I have set up a model that has a few properties and my delete method which is posted below. This method works perfectly except for the fact ...
0
votes
0answers
194 views

CSS intellisense not working in vs2012 asp.net mvc

I am having problems getting css intelliscense working in my layout page. I have tried restarting, building, and reset all vs settings (all of which were reccommended in other SO posts), but I still ...
0
votes
1answer
143 views

ELMAH requires System.Data.SqlServerCe.dll

Installed the ELMAH NuGet package. Now, when I publish my ASP.NET MVC 4 project to Azure, it warns me that it wants my project to have a direct reference to System.Data.SqlServerCe.dll (so that the ...
0
votes
1answer
97 views

Getting the red underline on view names when using custom methods in Visual Studio

I have a lot of extension methods/helper classes for ASP MVC that take in controller names, action names, or view names as parameters(much like the default HtmlHelper methods). Visual Studio usually ...
0
votes
1answer
48 views

Visual Studio Project template wildcards ignored in View (.cshtml) files

I'm creating a project template for an MVC 4 starter project. In any normal class based code file, I can write the following syntax for visual studio to fill in this $safeprojectname$ wildcard with ...
1
vote
1answer
39 views

Why can't I use normal Views with an ApiController?

Why can't I create a view directly from an ApiController? Both Controller and ApiController just receive and supply data, why can't my ApiController just output and recieve data formatted for and ...
0
votes
1answer
24 views

How to view a file that's part of an MVC project?

I have a file, eulatest.pdf, that I want to be able to view through my website. At this point I don't really care whether it's at mywebsite.com/eulatest.pdf or mywebsite.com/eula/eulatest.pdf or any ...
0
votes
0answers
32 views

Visual Studio 2012 not closing my applicationhost.config properly

Visual Studio 2012 is not closing my applicationhost.config file properly. And then when this happens my web projects don't want to load. I have created an ASP.NET MVC 4 project. The closing tag of ...
2
votes
0answers
192 views

How can I change IIS Express 8.0 install directory so it doesn't use “My Documents”?

Is it possible to change IIS Express 8.0 so that its install and configuration directory is not under "My Documents"? In our environment, "My Documents" is mapped to a network share. The problem ...
0
votes
1answer
82 views

Problems in Displaying Datetime values in Dropdownlist razor mvc

i got two fields date(datetime) and transactionID (int). I need to fetch values of date where transactionID between 10 and 20 and display it in a dropdownlist. I did like.. BFDbEntities BFT = new ...
7
votes
3answers
152 views

Can language localisations be automatically reverse engineered from .resx files?

I'm working with an MVC 4 app that was originally created with the intention of possibly requiring language localisation so there's a heavy use of .resx files and corresponding embedding of references ...
0
votes
2answers
37 views

What is the correct way to share a project across Web and Winforms/console solutions?

I am converting a .NET 2.0 Winforms applications to ASP.NET MVC3. The Winforms solution uses several projects for business logic, and the MVC application includes these projects. The projects are also ...
1
vote
2answers
96 views

Does Application_Start execute before Web.config file transformation?

I have a transformation file that adds a key to the appconfig section of Web.config. Then in the Application_Start method I'm trying to read that added key, but it doesn't seem to be there. When I do ...
3
votes
1answer
355 views

Unable to find the requested .Net Framework Data Provider. (SqlClient)

I am trying to set up a simple ASP.NET MVC 4 webapp using DB first migrations from a SQL Server (2005). I have created the tables in the database and used Entity Framework to create the objects in the ...
4
votes
1answer
120 views

Error on Project Startup relating to Entity Framework in Package Manager Console

This error has perplexed me for the last few days and can find little to no information on Google regarding this. This started the other day when I was assigned a new laptop by work and I'm ...
2
votes
3answers
194 views

<a> tag not working when Html.ActionLink is?

I'm just starting out with MVC and I need a div to become a link to another page. Whenever I make it a link using the tag with href I get a Server Error in '/' Application message. But when I make a ...
0
votes
1answer
220 views

Compilation error CS0016: Could not write to output file

In Brief When I attempt to browse my website, I get the following error message: CS0016: Could not write to output file 'c:\Windows\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET ...
0
votes
1answer
237 views

Bind ListBox Baed On Another ListBox Selection using jQuery Ajax in Asp.Net MVC

i have a database structure like this; And in my view, i have shown them like this; Now, what i want is, if someone select category, i should call ajax request and send to the controller and then ...
0
votes
2answers
56 views

asp.net Unit Test: Mark test as incomplete

I'd like to unit test a asp.net MVC webapplication. We're not using TDD (well, not yet). After touching a method I'd like to mark the appropriate unit test as incomplete or something so the other ...
2
votes
1answer
111 views

On Website upgraded to MVC 4, add view dialog always defaults to ASPX

(I'm posting and answering this question in one go because it's taken me a good hour to figure this out - and I hope it'll help others) Update - I've also posted an issue on the Asp.Net MVC Codeplex ...
0
votes
1answer
238 views

Dotnet highcharts not working (Missing assembly)

Hello im using MVC3 (Visual studio express 2012) I follow the instructions on this side; http://dotnethighcharts.codeplex.com/ I have made a new controller called TestHSController with a ...

1 2 3 4 5 8