The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern. Based on ASP.NET, it allows software developers to build a Web application as a composition of three roles: Model, View and Controller. A model represents the state of a ...

learn more… | top users | synonyms (5) | asp.net mvc jobs

0
votes
0answers
3 views

Appending values to mainform with values selected from Modal form

I have a view where I have the user select a email address from a modal form and update the value in the text box in the main form <div class="editor-label"> <%: ...
0
votes
0answers
16 views

Mvc is not binding properties of class with TypeConverter attribute

I have a simple class like this: class TimeAdvance { public decimal? Days { get; set; } public decimal? Hours { get; set; } public decimal? Minutes { get; set; } } Im trying to ...
1
vote
1answer
20 views

Asp.net MVC Routing not matching some file extensions

I am having trouble with routes not matching when the contain certain file extensions in them. I suspect it might be an IIS problem but I can't seem to track it down. First off, I have ...
0
votes
0answers
6 views

EF Code First: link dbset to existing SQL view in separate database

Let's say I create a new Entity Framework Code First entity like this (keeping simple for question): public class Product { public int ProductId { get; set; } public string ...
0
votes
1answer
11 views

The member with identity ' ' does not exist in the metadata collection.\r\nParameter name: identity

I simplified the code a little while trying to debug: [HttpPost] public ActionResult Register(User model) { DateTime bla = new DateTime(2012, 12, 12); try { ...
1
vote
2answers
52 views

Removing Text From DOM That is Not in an Element

I've run into a situation (a little out of my control) whereby debug text is getting inserted into my DOM when the HTML is being rendered. The text looks like the following: , NameSpace.ClassName, ...
0
votes
2answers
27 views

MVC3 Razor SelectedValue in DropdownListFor

I've the following code for a DropDownListFor and is working ok @Html.DropDownListFor(Function(model) model.Habilitacoes, New SelectList(ViewBag.Habilitacoes, "KeyHL", "DescricaoHL"), New With ...
0
votes
3answers
41 views

How do you update a database within asp.net MVC - is this the best way?

Following some excellent help from this forum, can anyone please confirm if this is the best way to update data in a database, in an MVC Controller, where multiple records/models are posted back at ...
0
votes
0answers
9 views

Replace error dialog for JQM with MVC

Is it possible to show the error message from a MVC controller action in JQM? By default a "Page loading error" popup is shown if my controller action raises an exception, what I want is to show the ...
3
votes
2answers
57 views

What is the difference between the Page and ViewBag dynamic objects in MVC3?

A dynamic object Page can be found in System.Web.WebPages.WebPageBase, the abstract class which WebViewPage inherits from. A dynamic object ViewBag can be found in System.Web.Mvc.WebViewPage. Both ...
1
vote
1answer
28 views

MVC 3 get ActionResult of an action that is defined on a different controller

Problem: What I need is something similar to @Html.RenderAction("action","controller") , but one that I can use from inside a different controller. This for example: public class FirstController : ...
1
vote
0answers
13 views

IIS not working with system.diagnostic.process.start()

IIS not working with system.diagnostic.Process.start(). as much i search need to allow access for desktop on iisAdmin service but after that still not working fine why?
0
votes
1answer
11 views

How does RequireJS work with multiple pages and partial views?

I'm looking into RequireJS but I'm uncertain about some things. I understand how I can load all my dependencies with main.js. But do I need to add any logic to work with those dependencies in ...
0
votes
0answers
16 views

SSO between Asp.Net MVC website and ASP.NET website?

I am investigating the possibility for SSO between Asp.Net MVC website and Asp.Net website. Some investigation includes below link ...
0
votes
0answers
11 views

Can you create Spark view engine bindings with plain html in?

I really like the bindings feature of spark, it really improves markup but I have come across a small problem. Is it possible to create a spark binding that doesn't have any code in it just html? For ...
0
votes
1answer
27 views

BlueImp jQuery Upload using ASP.NET MVC

I have been looking for a suitable image upload component for a website I'm working on, that will enable multiple image uploads, the ability to delete these individual uploads one by one, once ...
2
votes
6answers
60 views

CSS background color of individual rows

I found many articles online about coloring alternate table rows. what about if I want use different colors for individual rows, how can I do that? <table class="table1"> <tr> ...
-2
votes
1answer
23 views

How to use Edit view in index view in MVC3

I am new to MVC3 programming. I have user records (userid, username) in index view. I want to edit one record. I am able to edit the record in Edit view. But my requirement is to show popup (just a ...
0
votes
1answer
27 views

ASP.NET MVC Routing - It redirects when I don't want it to

I'm building a simple search engine with the following URLs: "/" - this is the homepage with the search textbox and submission button. "/search?q=" - this is where the results will appear. The query ...
2
votes
3answers
52 views

MVC - Manipulate Jquery plug in properties in ajax call

I am working with a Jquery time picker from http://labs.perifer.se/timedatepicker/ In the view I have this time picker control. $("#startTime").timePicker({ startTime: "09.00", ...
0
votes
2answers
22 views

MembershipProvider not recognized

I'm writing my own membership provider (actually just extending the built-in one) and MembershipProvider stays red with an error that it cannot be resolved, even though I've added System.Web.Security: ...
-1
votes
1answer
33 views

asp.net MVC linq [closed]

Does anybody have a good link for a tutorial on MVC with asp.net using linq to entities? I want to connect to sql server, not express. I don't want to have the database file in the project, as the ...
0
votes
1answer
30 views

Can Spring.Net Inject an abstract class constructor arg for all derived classes

We are using spring for our IOC container in an MVC3 project. I am trying to make a base controller that will have a constructor dependency on our IUserIdentity interface. I would like to define the ...
0
votes
1answer
22 views

NServiceBus 3.2 Samples Issue

I am trying to run the NServiceBus sample for AsyncPages. Seems simple enough. Download the latest from NServiceBus.com Execute the bat file to install prerequisites Open the solution Press F5 Enter ...
0
votes
1answer
23 views

MVC3 Html editor helpers display old model value

After form submit Html editor helpers (TextBox, Editor, TextArea) display old value not a current value of model.text Display helpers (Display, DisplayText) display proper value. Is there any way ...
0
votes
2answers
32 views

Show only first error message

I am using ASP.NET MVC3 for a form that has both server and client validations. I'm showing error messages as balloons above the inputs. Due to the presentation of the errors, I need to only show one ...
3
votes
2answers
59 views

'interface' does not exist in the namespace

I am trying to implement a repository on my controller ( with some Dependency Injection thrown in), but I'm bumping into a wall. I have an IStatementRepository defined, But, when I try to create a ...
0
votes
2answers
36 views

cannot use Url.Action in the class file

in my asp.net mvc3 web site, I use Url.Action in the view to generate url. @Url.Action("Profile", "Users", new { @Id = Model.UserId, name = Model.NickName }) now, in one of my helper class, I need ...
0
votes
0answers
19 views

WCF Client Won't be created (using ASP.NET MVC instead of Console App)

I am using the tutorial located here: http://msdn.microsoft.com/en-us/library/ms734712 to try and create a basic WCF Service. Everything's pretty much the same as in the tutorial with a few ...
0
votes
1answer
16 views

annotation with Editable(false) on my ViewModel renders an editable Textbox

When I annotate my ViewModel with: [Editable(false)] public string Name { get; set; } Then I create a new View in Visual Studio and I get a View with an editable TextBox: <div ...
-1
votes
0answers
51 views

C# web developer to learn PHP with Wordpress and MySQL [closed]

I have two questions here. I am an ASP.Net MVC, C#, SQL server developer web developer for many years and I am trying to do some freelancing work on the side with PHP, Wordpress and mysql, I found ...
1
vote
2answers
58 views

Dynamic Typing a Generic Class

I have an object that's being automatically serialized by the WebAPI, but I wanted to wrap it to provide context to my data. An example would be: public class SecureModel<T> { public string ...
0
votes
4answers
31 views

why Request.Url includes querystring in it?

on one of my page, I let user to filter the content based on the age they choose from the age dropdown list. here's my code. $('#age').change(function () { var ageUrl = "@Request.Url?age=" ...
1
vote
1answer
12 views

Trouble publishing VS 2010 ASP.Net MVC 3 Razor web application to IIS 6/7

I have been trying to get my feet wet with MVC by building a simple CRUD web application linked to a SQL 2008 database. Everything works great when I run the project from within VS, but I have run ...
0
votes
1answer
19 views

AppHarbor MVC - Unable to use HttpNoContent Status Code

I need to be able to respond to requests with a http status code of 204 but appharbor is only returning a 500 error. My controller code is executing correctly but when the code below is called, I ...
1
vote
1answer
33 views

Adding Ninject.MVC3 to existing MVC(4) project

I am working on a project with MVC4, and have decided that I wish to add some dependency injection via Ninject. After download/install via NuGet, I find this error in the NinjectWebCommon.cs (Line ...
0
votes
3answers
29 views

asp.net mvc update multiple records

is it possible to have a view for editing multiple records, in the same way that the index.cshtml view loops through records to display them (as below)? @foreach (var item in Model) { <tr> ...
0
votes
4answers
49 views

Create instance of a class with dependencies using Autofac

Problem: Assume the class: public class MyAwesomeClass { private IDependCls _dependCls; public MyAwesomeClass(IDependCls dependCls) { _dependCls = dependCls; } } And somewhere ...
0
votes
3answers
49 views

How to display a pdf file in web browser in asp.net mvc3

I have a pdf file named 102.pdf in my App_Data folder. I want to view this in my web browser like chrome.Here is my code. But I can not display it. <iframe src="102.pdf" width="400" ...
0
votes
2answers
48 views

For loop in a view

I have this code: columns.ForeignKey(p => p.SomeProperty, new SelectList(new[] { "0", "1", "2", "3", "4", "5" })); And I want to populate the SelectList dinamically, not always from 0 to 5. ...
0
votes
0answers
18 views

Guidelines for auditing, benchmarking and optimization of JavaScript in web application (MVC)? [closed]

I’m about to start on a project to auditing frontend part of a web application (heavily based on JavaScript ). Can you please recommend a strategy, checklist or guidelines which defines systematical ...
0
votes
2answers
32 views

ViewData of Actionfilter is not available in Base Controller property

I have a basecontroller like this [Action] public abstract class ApplicationController : Controller { public bool HasRight { get { return ((bool)ViewData["Actions2"]); } } ...
3
votes
1answer
39 views

Submit a form with a collection of a Model

I have a ViewModel which contains a collection of type of my Model, like so: public class OrderConfirm { public ICollection<QuoteLine> SalesLines { get; set; } public string Currency { ...
0
votes
0answers
8 views

IIS 5.1 + Creating crystalreportviewers13 folder into aspnet_client virtual directory

I have developped a web application by using the ASP .NET MVC 3 framework. My application uses an ASPX page containing a Crystal Reports viewer control. I have installed Crystal Reports 2011 and CR ...
0
votes
2answers
37 views

Adding parameter to every jqGrid ajax call

When there is a jqGrid on the page I want to extend it to pass an extra parameter in. My best attempt so far: ... $('[role=grid]').jqGrid('setGridParam', { ...
0
votes
1answer
60 views

Generic controller in MVC

Can you explain to me the point of a controller when all it does it return a view? Have I missed the point here? I've come across a situation when trying to build a rudimentary CMS where the user can ...
0
votes
2answers
22 views

How do I install the Entity Framework on my build server?

How do I install the Entity Framework on my build server? I only have MS Visual Studio Shell installed there and there is no Package Manager Console. Thanks.
0
votes
1answer
15 views

how to access original url in asp.net mvc?

We need to do SEO redirect for urls like: //////controller/action to /controller/action Request.Url and Request.RawUrl doesn't have '////' part, it shows only one slash.
0
votes
1answer
12 views

Dataset give a empty chart

I have to make a graph based on a list of items. For this I use dataview chart and ASP. Net. The problem is that my graph is empty but I have data. The data: ...
1
vote
2answers
27 views

Protecting folders in MVC

I have some files in my Content folder that I don't want a user to be able to download without being authorised. How do I prevent a user from just getting to the file by typing ...Content/{filename} ...

1 2 3 4 5 701