Tagged Questions
0
votes
2answers
17 views
MVC4 in visual studio 2010 and visual studio 2012
What is the difference between using mvc4 in visual studio 2010 and mvc4 in visual studio 2012.
I have a project created in mvc3 using visual studio 2010, now I need to move it to mvc4.So much ...
2
votes
1answer
25 views
How to handle [Authorize] with {SiteName} in asp.net mvc
given a mvc4 which has a {sitename} parameter in the routes like so
routes.MapRoute(
"Sites", // Route name
"{sitename}/{controller}/{action}/{id}", // URL with parameters
new { sitename ...
0
votes
0answers
23 views
How to set limits on image upload in CKEditor
in a aps.net mvc4 app based on user credentials
such as for general users - they can upload 4 images of type .png, .jpg only with max 10k file size each
admin users - they can upload 10 images of any ...
0
votes
3answers
44 views
Error opening project file in VS2012
The following error is being returned when i try to open a colleagues MVC application in VS2012.
when i click on "OK" - i am not able to open any of the files within the environment.
I am able to ...
0
votes
2answers
45 views
Converting Model to list in an MVC test
I'm running tests using NSubstitute in VS2012 and I'm trying to convert a Model to a list, or something I can count. Here's the code:
[TestMethod]
public void StartedGame()
{
// ...
0
votes
1answer
30 views
Excluding shared editor templates from project in Visual Studio doesn't work
I want to run my ASP.net MVC project without using a particular shared editor template that has errors
eg.
~\Views\Shared\EditorTemplates\String.cshtml
But even when I right click and exclude it ...
1
vote
1answer
122 views
How To Debug Web API Project From MVC Project In Same Solution
In VS 2012, I am attempting to create an MVC 4 web application with jQuery calls to a Web API project. (Other devs will be consuming the API with our current, native app, and probably adding to the ...
1
vote
1answer
58 views
Jasmine in a separate test project
Is it practical/possible to separate jasmine tests into a separate visual studio project?
I am just getting started with angular, and am trying to write my tests before I start on the actual ...
2
votes
5answers
85 views
Render multiple strongly typed partial views inside a view?
I have this Index.cshtml class:
@model ProOptInteractive.ViewModels.InvoicePageViewModel
@{
ViewBag.Title = "Index";
}
<div>@Html.Partial("ListServices", Model.Services)</div>
...
1
vote
1answer
46 views
How to reference “Context” / Controller from Views
We're looking to build a mvc4 site with url's such as
abc.com/site1/home/about
abc.com/site2/home/about
where each refers to a completely different website/page
now the menu items - ...
0
votes
1answer
50 views
Serving static files in development with IIS Express and Visual Studio 2012
This seems like a pretty common use case, but I can't for the life of me find any information on how to set this up.
I've got an "Admin" site where I upload images and then my normal website ...
0
votes
1answer
61 views
Create simple Html.DropDownList or DropDownListFor
I am trying to include a list of Clients in a drop down box. I am including this list in a form (the Html.BeginForm()) so that I can pass the selected value to my POST controller. I think I am missing ...
0
votes
0answers
22 views
DefiningQuery in EDMX created Automatically
I have created EDMX file from DataBase and opened it in a XML editor. I see a new property called "DefiningQuery" with some select Query written for one of the Table.
Later i read about Defining ...
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 ...
0
votes
1answer
105 views
Error with jquery references and getting two versions of jquery at once
For some reason I am getting version 1.8.2 of jQuery added to my solution even though there is no reference to it anywhere. Only 1.9.1 in the scripts. The code to add it is:
bundles.Add(new ...
-1
votes
0answers
36 views
Can I force Visual Studio to treat keywords as Columns so they don't send build errors?
I am building an ASP.NET web app (In Visual Studio 2012) that interacts with an already set up MS SQL 2008 Server. One of the column names is namespace. In Visual Studio namespace is a keyword for ...
1
vote
1answer
51 views
Space around radio button to big
I'm working on one large site and currently all radio buttons look like this:
In my View I have this code:
@Html.RadioButton("new", "new", false, new { @onclick = "New()", @id = "new", ...
0
votes
0answers
111 views
VS 2012 & IIS Express With Windows Authentication
I have successfully setup my development environment on one machine utilizing IIS Express and Windows Authentication to essentially force a web application to use SSL. When I pulled the code down ...
0
votes
1answer
56 views
How can I precompile HandlebarsJS templates from Visual Studio?
Is it possible to precompile Handlebars Templates from a postbuild event of Visual Studio or in the App_Start of a MVC web app?
Thanks so much in advance.
Dale
1
vote
3answers
98 views
Get “object reference not set to an instance of an object” when run Page Inspector on MVC app in Visual Studio 2012
When I try to run an MVC web application in Page Inspector mode I get the error "Object reference not set to an instance of an object" and the app just hangs.
Microsoft has noted that it's a bug but ...
0
votes
3answers
65 views
MVC build - edit a connectionString file depending on build configuration (VS2012)
When I deploy my MVC site to our test server it will be connecting to a different database and therefore requires different connection string.
Usually this can be changed using transforms of the ...
0
votes
0answers
36 views
Where to place custom Results, Filters and Attributes in ASP.NET MVC Solution
This question is one of general class/file placement in a solution. In MVC3/4, if I am defining my own ActionResults, Filters and Attributes, where is the best place to store them?
I prefer to have ...
1
vote
4answers
256 views
Cannot add a MVC controller VS2012 gives “object reference not set to an instance of an object”
I have searched extensively and cannot find another person on the planet with this problem...
The symptoms are:In Visual Studio 2012, on a MVC 4.0 Project that was upgraded from VS2010 and is ...
1
vote
2answers
124 views
MVC4 model validation then submit JSON post to external URI using JQuery
I need to submit a simple form and validate the model. If the model is valid, I would like to serialize that model and send it via POST to an external (https) web service using custom headers. Finally ...
0
votes
2answers
70 views
Not able to open files in visual studio after debugging application
I'm working on an ASP.net mvc project in Visual Studio 2012. Came across this issue, which is incredibly annoying when debugging my application. Say that I have n number of files open in my editor ...
2
votes
4answers
131 views
How to add a “using” statement to the System.Data.Entity namespace [closed]
I am new to Visual Studio and C# in general. I'm following a tutorial trying to learn the language (tutorial here).
One of the steps is to add a “using” statement to the System.Data.Entity namespace ...
0
votes
1answer
48 views
tweetsharp overload error when using MVC4 - Internet application template
When creating a new mvc4 internet project with the internet application template when you install the tweetsharp nuget packack it is giving me and error message on service.VerifyCredentials();
using ...
2
votes
1answer
23 views
Issue while publishing Web in VS2012
Am working on MVC project with Different layers(Main project MVC Web other projects are Class libraries where Bin points to MVC web Bin Folder) with Dependency Injection using Unity.
While running in ...
0
votes
0answers
17 views
ALINK Error while Building the Solution in VS2012
hi i'm getting a ALINK Build error while building the solution first time and every thing works fine second time.
Error 16 Metadata failure while creating assembly -- The process cannot access ...
0
votes
2answers
57 views
Unable to load settings file. It might be corrupted or contain invalid XML or contain duplicate identifiers
I'm trying to open my project Settings XMl
in order to add some configurable pair to it
but I get this error:
Unable to load settings file. It might be corrupted or contain invalid XML or contain ...
0
votes
2answers
103 views
razor views are not giving compile time error
I've recently installed VS 2012 Professional.
When i try to build my MVC4 Web Project. It doesn't recognize error in razor view when i do "Build" or "Re-Build".
Example :
I removed a namespace from ...
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
0answers
128 views
IIS Express 8 in Visual Studio will not load site when Authentication cookie exists
I have an ASP.NET mvc application in VS 2012 running IIS Express 8 for the debugger (with a custom domain and ssl). Everything was working great until yesterday. When I launch the debugger, it loads ...
1
vote
1answer
70 views
Connot add controller in ASP.NET MVC project
I'm trying to add a controller in my ASP.NET MVC project.
I am using Entity Framework Code First (5.0), and when I right-click the Controllers folder in my project and selecting Add Controller:
...
0
votes
1answer
66 views
MVC View designer complains "There is no endpoint listening at net.pipe://localhost/
I recently installed Visual Studio 2012 (Ultimate edition) Update 2. I'm not sure if this problem is related to that update but.. now, when I view any of my View (.aspx) code in the VS designer, the ...
1
vote
2answers
85 views
How to rename build name with assembly version?
Pls see screenshot. I have setup continuos integration with tfsservice.
It builds and deploys after each checkin.
I would like to append or pre-pend if that word exists, the assembly version so that ...
0
votes
1answer
44 views
Is there a way to get CSS class defintions from the VS2012 CSHTML code editor?
Is there a way to click on a CSS class in the VS2012 View code editor to get the class definitions, like "Go to definition" for Classes etc.
Thanks.
EDIT:
Linked to this question is how to ...
0
votes
1answer
27 views
Mvc4 Website builds, but Error List is populated when viewing Razor files
I have an Mvc4 website that builds and runs just fine, but each Razor content page is filled with errors when viewed in VS2012. I get errors that the model keyword and ViewBag object don't exist, and ...
3
votes
1answer
64 views
How can I make code-generation respect my formatting settings?
I've started using VS2012's MVC project template, and I like how I can right-click and say "Add Controller" or "Add View" to produce new classes. But the generated class code doesn't respect the text ...
1
vote
0answers
64 views
Why are changes made in my .NET MVC-4 solution not showing in the browser preview?
So I'm running Visual Studio 2012 (Win7) on VMWare Fusion. About 50% of the time a change to a view would not render in the browser preview. This would drive me crazy. The solution I found would be to ...
0
votes
1answer
83 views
Enabling Reporting Services 2005 on VS 2012
I have this SSRS Reports SQL 2005 and i need this to attached on my MVC Application using VS 2012.
VS 2012 Report Viewer version 11 doesn't support RS 2005 and supports only RS 2008 later that's why ...
0
votes
1answer
46 views
Visual Studio 2012 - Copy “Views” and “Content” to project Output Path
I have an MVC project and would like to have the build output to a different directory. I have set the Output Path in the project properties and this takes care of where all the .DLL's are deployed ...
1
vote
2answers
130 views
Adding invoice lines with ASP.NET MVC
I'm creating ASP.NET applications with MVC 4 Technology, and I want to allow the end-user to enter line items onto an invoice. I want the user to have the ability to add as many line items as they ...
1
vote
2answers
183 views
Resharper “can not resolve symbol” even when project builds
My Tools:
VS 2012 Ultimate + Update 1
Resharper v7.1.25.234
My Solution Build Status: Build Successfully
But when i install resharper and resharper code analysis is enable, many keywords of my ...
0
votes
1answer
31 views
Can't connect to and debug my azure app
I have a mvc4 project that I have published to azure through a publish profile that I use by right clicking my main project and go publish.
All this works great and has for a while.
But now I need ...
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
437 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
2answers
292 views
How do I add ASP.NET server controls to my MVC4 views?
As the account name claims, I am indeed a n00b. ;)
I'm new to MVC. I'm just trying to add an <asp:Label/> to one of the default views that were stubbed in when the project was created. But ...
1
vote
1answer
52 views
Release a Startpage in MVC .4
(Note: I'm a total begginer in the ASP.NET MVC World...)
Environment: Visual Studio 2012
Project Application: ASP.NET MVC 4.0
I did set /views/home/index.html as startpage... Things didnt turn out ...


