0
votes
1answer
93 views

How to have Visual Studio 2012 returned compile errors on razor syntax error in “asp.net web page 2”? (Website package, not project or web app)

I'm using Visual Studio 2012 and I wrote some Razor scripts in *.cshtml. I'm not using MVC but "asp.net web page 2" (the term which is what Microsoft called it). It is created as website package ...
0
votes
0answers
32 views

Removing Layout will default to _ViewStart, so why section name is not found?

Let's say I have this view: @model App.ViewModels.Unicorn @{ Layout = "~/Views/Shared/_Layout.cshtml"; } <div id='#unicorns'>...</div> @section Scripts { ...
1
vote
1answer
63 views

Exception when attempting to connect to SQL Server CE from C#

I'm an newbie who is trying to get learn some web programming. I'm making my site in VS 2012 using C#. I've got a database connected in the App_Data folder, using SQL Server CE 4.0. I'm attempting to ...
2
votes
5answers
96 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> ...
2
votes
1answer
396 views

Convert MVC 2 ASPX into MVC 4 Razor view engine

I am currently working on MVC 2 with visual studio 2010 and view engine as ASPX kind of project. So I have decided to move with Visual studio 2012 with MVC 4 and view engine as Razor. So could I ...
0
votes
1answer
62 views

Unable to find _Layout in page inspector mode

I'm writing a simple MVC4 application in which I chose the internet application template when I created the project. When I right click _Layout.cshtml and go to view in page inspector, I receive a ...
1
vote
1answer
79 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
2answers
49 views

Why is my jQuery-generated list item not displaying?

I have an XML file named Platypus.XML that I've added to my Razor 2 project on the same level as the files supplied by default when creating a new Razor 2 website in VS 2012 (_AppStart.cshtml, ...
1
vote
2answers
184 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 ...
3
votes
0answers
284 views

Visual Studio 2012 - Waiting for a background operation to complete

I have been suffering from the all too common 'Waiting for a background operation to complete...' message in Visual Studio 2012 (Professional) for a while now but it has been fairly sporadic. Lately ...
0
votes
1answer
65 views

How to get Collapsing + and - symbols in Razor view Editor in MVC3

I am using VS2012 with MVC3, Razor and C#. Bit confused here. My Razor view does not seem to be showing the Visual Studio nesting "+" and "-" symbols. I see this in other cshtml Views around HTML ...
0
votes
0answers
231 views

“microsoft.visualbasic.fileio does not exist” trying to use TextFieldParser

I've seen the above question asked many times on many sites, but I haven't seen an answer that fixed the problem. The scenario is this... I am on .NET Framework 4.0, building a C# web application in ...
0
votes
2answers
360 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
142 views

How to change Visual Studio 2012 Razor colors

I would like to change the yellow background color of the Razor tags in VS12.
1
vote
1answer
97 views

Display only x numbers of items in index.cshtml

I'm making a newsfeed project in Visual Studios, MVC 3, Razor engine and I'm trying only to display, let's say 10, number of feeds at once. Currently while I was getting the database going I used ...
0
votes
0answers
150 views

Razor and MVC4: How do I make a DropDownList for a subclassed object that is inside the model?

I'm using VisualStudio 2012, with Razor+EF4+MVC4. This is a website to create and display job offers. My model has 5 classes: JobOffer, Requirement, RequirementArea, RequirementEducation, ...
1
vote
1answer
83 views

Find Razor used inside script tags

In Visual Studio 2010/2012, how can I find all the script tags that might contain javascript mixed up with Razor? This should be matches: <script> var hola = '@serverVariable'; ...
0
votes
3answers
194 views

Razor Editor not working for some projects in solution

I am creating a CMS using MVC 4 and the Razor Syntax and have a strange problem. In the main project everything is working fine, but I have some additional projects in the solution (also MVC 4 ...
0
votes
2answers
89 views

How do I change validation messages from German to English?

Currently, when I get validation errors in my Project, I have German validation error messages. I would like to have English ones. They seem to be in System.Web.Mvc.resources.dll: ...
2
votes
0answers
118 views

Extend Intellisense for Razor Editor in Visual Studio 2012

Visual Studio offers the ability to extend the Intellisense support when editing XML documents by specifying an XSD that will be used to validate the XML. Does Visual Studio offer any such support ...
1
vote
1answer
91 views

Visual Studio 2012 Keyboard Freezing

I am having an issue within the razor view in Visual Studio 2012. For some reason, most of the time when I am trying to edit a style property, my keyboard freezes and doesn't allow me to type ...
1
vote
1answer
172 views

Does bundling CSS files break CSS Intellisense in Razor views?

Does including a set of bundled CSS files in a layout view, a la @Styles.Render("~/Content/css") stop css class intellisense in slave View files? I ask because in one of my views, View.vbhtml, I ...
0
votes
1answer
159 views

Setting breakpoints in a Razor file in Visual Studio 2012

In Visual Studio 2012, I am trying to set breakpoints in my razor (.cshtml) file, but every time I try, it says the breakpoint could not be ser, or else I get the following error message: The ...
0
votes
1answer
97 views

How do I turn on collapsible regions for markup in .cshtml (razor pages) visual studio 2012?

In visual studio 2010 markup in MVC3 and ASPX pages was collapsible (by closing tag) however it does not seem to be working in visual studio 2012. Anyone know how to get it working? I cant find it in ...
0
votes
2answers
199 views

Visual studio showing syntax errors in razor statements but works

I've a project in MVC 3. It works perfectly and each time I build it, it succeeds. However, Visual Studio insist in showing compile errors in views in each razor syntax. For example: The name ...
0
votes
0answers
254 views

Visual Studio doesn't update cshtml file when debugging

I have made some changes to my cshtml file to debug a bug (a horse of course). But the changes aren't reflected when I actually debug even though I saved the file? This is very strange behavior. ...
0
votes
2answers
82 views

linq not identifying query terms

I created a usercontrol which should be basically populating dropdownlists in my form when the page is loaded and adding after submit submitting the information via linq to the the database. The ...
0
votes
1answer
177 views

Razor heper methods not recognized

Ever since I upgraded my project to MVC4, my Razor helpers are marked with red squiggles, and intellisense doesn't work; everything works at design time though. Can anyone help? Here is what my ...
3
votes
2answers
1k views

Why can't Visual Studio find System.Web.Mvc.resources.dll?

I keep getting these 11 errors in Visual Studio: Error 456 Could not copy the file "_bin_deployableAssemblies\de\System.Web.Mvc.resources.dll" because it was not found. ViMuDat Error 457 Could ...
1
vote
1answer
308 views

In MVC 4 assign client side DropDown value to Model Property on Submit

I have 1 Client side drop down in the view. Content for Dropdowns is loaded from Js file. On submit I want the selected dropdown value to be assigned to Model property and send it to Controller. ...
0
votes
0answers
56 views

Debugging Visual Studio editor exceptions

How do i get a more detailed explanation of the following exception that is occuring in the editor for visual studio? The exception: Warning 1 xxx\Module2\Views\Home\Index.cshtml: ASP.NET runtime ...
1
vote
0answers
132 views

Razor intellisense doesn't consider inherited properties

I'm using RazorEngine 3 (Antaris fork at https://github.com/Antaris/RazorEngine) for generating emails from Razor views, and have a 'base' view class that extends TemplateBase<T> called ...
1
vote
3answers
3k views

DropDownList Binding to ActionResult Create Method MVC 4 VS2012

I'm a brand new user here - but I've been searching for a couple of hours now to solve following problem: I've got 2 Entities - Category and Item. Each Item should belong to a Category - therefore I ...
0
votes
1answer
124 views

The type or namespace 'WebImage' could not be found

I set up a new ASP.NET project in VS2012 (using Razor). However I have an issue with "WebImage" object.. I get the error mentionned in title when I put this code into a cshtml page: @{ WebImage ...
2
votes
1answer
712 views

WebAPI and razor view engine

I am using MVC4 from Visual Studio 2012. when creating a Web API project from VS project template, the wizard dialog shows only the Razor view engine is select-able. My question is why a View is ...
1
vote
1answer
101 views

HttpPostedFileBase is Not Being Populated

I have a model (simplified, removing extraneous properties): public class SubmitModel { [Required] [DataType("FileUpload")] [Display(Name = "Formatted Data File")] public ...
1
vote
1answer
642 views

Long delays when formatting a .cshtml file in Visual Studio 2012

Working with MVC4 using Visual Studio 2012 at the moment and when every I format a CSHTML document (CTRL + E + D) I get the "Waiting for a background operation to complete dialog" This dialog stays ...
1
vote
1answer
178 views

No highlighting in most pages, reports error when editing

I'm in the middle of upgrading a solution from VS2010/MVC3/.Net 4 to VS2012/MVC4/.Net 4.5. The solution has been upgraded using VS2012's project migration tool and I followed this guide to upgrade ...
0
votes
1answer
51 views

Do I need to do anything “special” to use the WebMatrix database helper in Visual Studio '12?

I'm doing some basic db querying in WebMatrix. Something like, @{ var db = Database.Open("test"); //test is the name of my database var selectQuery = "SELECT * FROM MY_CUSTOM_TABLE" } //Doing a ...
3
votes
1answer
2k views

How-to setup Ext.NET 2.0 in a VS2012 MVC4 Project?

i have high doubts that my question will be answered, but i'll try here since my frustration levels are so high that maybe it will help myself lower them! So, what i want to do is: Install VS2012 ...
-1
votes
1answer
296 views

Razor display date MVC

I have html as @Html.EditorFor(model => model.DateOfBirth}) and property as [DataType(DataType.Date, ErrorMessage = "Invaild date.")] [Display(Name = "Date of birth")] public DateTime ...
0
votes
3answers
954 views

MVC Razor helper does not exist in current context

I have created a custom razor helper in my MVC4 Web application that I need to be usable in all of my views. In all of my view pages, I can't seem to use my custom helper. VS2012 doesn't just see ...
9
votes
1answer
443 views

Syntax error in Razor view when passing model properties as parameters to javascript function

I get a Syntax error on each comma (,) and on the last bracket ()) in the following code: <script type="text/javascript"> Filters.priceRangeInit(@Model.Min, @Model.Max, @Model.From, ...
1
vote
4answers
2k views

Intellisense in mvc4 project not working in vs 2012 professional?

In my razor views the intellisense is not working. Are there any fixes for this? I'm using the newly released VS 2012 Professional and building a ASP.NET MVC 4 project. The intellisense in my razor ...
3
votes
2answers
1k views

Visual Studio 2012 code formatting on CSHTML lowercases generic model types

When formatting code a Razor cshtml file in Visual Studio 2012 (with Ctrl + K + D) if model is a generic type, VS makes it all lowercase. For example: @model IEnumerable<Content> converts to ...
8
votes
1answer
624 views

Get Visual Studio to highlight Razor syntax with a custom host factoryType

Here's the scenario, I've extended MvcWebRazorHostFactory so I can do a little bit of extra view magic at build time. The exact magic doesn't matter. The registration in my ~\Views\Web.config looks ...
2
votes
2answers
2k views

Razor views: The pre-application start initialization method Start on type Microsoft.Web.WebPages.OAuth.PreApplicationStartCode threw an exception

I'm working in an Asp.net MVC 4 project in Visual Studio 2012, when I open a view I'm getting this error: ASP.NET runtime error: The pre-application start initialization method Start on type ...
3
votes
1answer
764 views

Conditional Compilation is Turned Off VS 2012 razor javascript

I have searched SO and not found a solution to this problem. I have code like this: <script> $("AddToFavorites").Click(function() { var apiLink = "/url/AddToFavorites?id=" + ...
0
votes
1answer
891 views

Ajax.ActionLink in MVC3 not working

I'm developing an Asp.net MVC3 website from VS2012RC. I'm trying to create a partial view to the website using Ajax Actionlink. But it is not working. After trying everything I know with my team and a ...
1
vote
1answer
1k views

ASP MVC 4 showing collection type

I have an issues with my first ASP.MVC 4 project where one page (only bound page so far) is showing the type of the collection at the top of the main content area. I have tried getting rid of it but ...

1 2