The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern. The latest release of the framework offers REST-style web services development capability, also known as Web API.

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

0
votes
1answer
7 views

Putting DataAnnotation buddy class in another assembly

I have a project called Model. All of my entities are in that project generated by EF Code first. Public Partial Class Person { ... } I don't want to touch my generated classes so I can create ...
0
votes
3answers
22 views

ASP.Net MVC Postback from View to Controller shows null values

I've a problem with ViewModel posting back to a controller, but the ViewModel not being mapped correctly from the View to the Controller. TopicId and Content should contain values, however, when ...
0
votes
2answers
10 views

ORA-00933 before update query

Good day. I create some repository for objects and try to update same object. I used 'ExecuteStoreCommand' and next method public void UpdatePatienAccount(long modelId, long patientId, long ...
0
votes
3answers
21 views

How can a decimal format to sting in mvc avoiding the last two zero s after the decimal point in mvc3

I rounded the loan amount value. But in my model I have defined the Loan Amount as Decimal. In Grid I need to show it as an Integer (need to avoid the last two zero's after the point). For example: ...
0
votes
0answers
7 views

PartialView cumulatively adding issue

I want to make a modular web site.Everything is going well but i have encountered a problem when cumulatively added module.I want to load content dynamically as below: For contact page: ...
0
votes
2answers
16 views

simple membership provider in mvc

How to make simple Membership provider from empty web application template in ASP.NET MVC4 I searched a lot on google, bing and many others, but I din't get positive responce about membership ...
0
votes
3answers
47 views

How do I load data from the database once per day?

Our ASP.NET MVC 3 website display contents from an external ticketing system and querying this database slows down page load (we display it in the every page footer). We didn't find any deferred ...
0
votes
1answer
17 views

FullCalendar not showing Events

I want to bind the fullcalendar by arshaw into my MVC 3 Application and save the events into a SQL Server database which is in my App_Data Folder. But I have a few problems. On the View of my Action ...
0
votes
3answers
38 views

How to load millions of records in asp.net mvc 3 or 4 to client side. (slow issue)

I have a project that loads millions of records. I will be using asp.net mvc 3 or 4. I am sure my page would load very slow because of much data retrieved from the server. I have been creating SQL ...
0
votes
2answers
27 views

MVC and jQuery datepicker

What I'm trying to is apply datepicker into textboxes with class attribute equals datepicker. So I'm doing it like this: _Layout.cshtml <!DOCTYPE html> <html lang="en"> <head> ...
0
votes
0answers
10 views

Asp.net MVC4 versus Asp.net web forms for building multitenant application?

I am trying to build a multitenant application using windows azure as a cloud platform , I want to make a design decision whether to go with Asp.net MVC4 or Traditional Asp.net webforms with layered ...
0
votes
0answers
11 views

Capture Data Changes Query in c#, MVC

I have a database that I need to keep all Historical data on for. I have enabled CDC on SQL server 2012. The systems tables have been created and they work. My issue is, how do I query the system ...
0
votes
2answers
63 views

Params parameter when using optional paramters

I'm am currently writing overrides to provide own implementations of MVC controls. I would like to work with optional parameters so it saves me the work of writing and maintaining multiple overrides ...
-1
votes
1answer
31 views

How to display a JQuery progress bar during $.post

There is a button in my MVC view. <input type="submit" value="Go" title="Go" onclick="JumpToUpdateDate()" /> When user hits the button there is one Controller action being executed by $.post ...
0
votes
1answer
22 views

How to handle related objects in your business layer (asp.net mvc + nhibernate)

Im designing an application from the ground up. I do this as a study object to get my coding skills better and better. In this application I have two entities: Countries Cities Adding a country ...
0
votes
1answer
21 views

browser showing model as query string in mvc

having an issue in asp.net mvc, browser is displaying complete model as part of query string. I have first method which gives list of employees [HttpGet] public ActionResult GetEmployees() ...
0
votes
0answers
22 views

@ html.dropdownlistfor forcing fill value without needing

I'm studying MVC and in my tests I created a strongly typed view, where there is a field that is not required (this field belongs to a list of value type table). For this field I am using helper ...
0
votes
0answers
18 views

Entity Framework 4 Join query

I am new to Entity Framework, i want a join query for these two tables, I have the sql join query which is like this select ...
0
votes
1answer
19 views

Printing all data returned from SQL query in cshtml?

I was just wondering whether it is possible to print all the values returned from a query without explicitly giving the name of the columns. Background: I am trying to create a 'delete page' where an ...
0
votes
1answer
17 views

Entity Framework Type Error

I am getting two tables data using EF this way and converting it to list to pass it to a view, i am working in mvc4, but i am getting this error: Error 1 Cannot implicitly convert type ...
0
votes
0answers
11 views

How to Upload a file with JqGrid Edit Form?

I tried to use below in my JqGrid. { name: 'ImageURL', index: 'ImageURL', search: true, align: 'left', searchoptions: { sopt: ['cn', 'eq', 'ne'] }, editable: true, edittype: 'file', editoptions: { ...
-4
votes
0answers
26 views

Asp.Net MVC Session Lost after editing view files [closed]

Each and every time when I edit a view file, and hit continue, the session is lost. I use MVC 4. While debugging I'll edit some view files. If I edit, and hit continue the session is lost. When the ...
-1
votes
0answers
20 views

send email by third party SMTP server from asp.net MVC [closed]

I have a ASP.Net MVC project where I want to send email by a third party SMTP server but I have a problem. Using ASP.Net MVC project I can not send email - I get an error message: operation ...
0
votes
1answer
22 views

Controller in Sub Folder

My area is below. Only the concerned part is highlighted. Route Table public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); ...
0
votes
1answer
18 views

IIS instances sharing data

I don't know if this is common or something but I wanted to check. So I am building a site on an iis7 server and coming across a weird problem. Whenever I have 2 clients accessing the site it seems ...
91
votes
14answers
28k views

Could not load type MvcApplication

I am getting the error: "Could not load type MvcApplication" when I try to run my website.
17
votes
7answers
12k views

Telerik vs DevExpress ASP.NET MVC Controls

I’m gathering feedback from folks who have used the ASP.NET MVC controls from DexExpress or Telerik. On the WebForms front they both seem to have a good reputation, but I’m looking for feedback from ...
0
votes
1answer
20 views

asp.net mvc post data and page refresh (session variable vs tempData vs detect F5)

i am teaching myself MVC and am struggling to work out the best solution to my problem. I have a search controller with a large amount of input fields. I will also have multiple overloads of the ...
0
votes
1answer
8 views

Telerik Grid Double Click Display Twice the Number of Clicks

I have a telerik grid that I am using to do a post to the server when the user double click on a row. It appears to work fine until I place an alert in the code and notice some odd behaviors. When I ...
2
votes
2answers
51 views

MVC 4 - Use a different model in partial view

Please bear with my noobness, I'm super new to the MVC pattern. What I'm trying to do I am building a profile information page for registered users on my site. This page would list data about the ...
1
vote
5answers
5k views

Html Attribute for Html.Dropdown

I am using a dropdown list as follows. <%=Html.DropDownList("ddl", ViewData["Available"] as SelectList, new { CssClass = "input-config", onchange = "this.form.submit();" })%> On its ...
1
vote
5answers
38 views

how can I tell what view this controller will return?

I am new to MVC 4 and learning an MVC 4 codebase. In the music store tutorial from Microsoft, I added views by right clicking a method in a controller and choosing Add View. This allowed me to know ...
0
votes
1answer
26 views

JavaScript and ajax.actionlink

i am working on an mvc application, i have a page that shows list of images and when you hover over the image it simply add border to the image then i have some link on the page that filter the ...
0
votes
1answer
14 views

Fluent Validation for complex child objects by setting different RuleSet

I have a complex class structure as below. public class Account { public List<Name> Person {get;set;} public List<Address> Address {get;set;} public string Email {get;set;} ...
0
votes
2answers
40 views

Best practice for a multipage/form mvc web app

I have a project using ASP.Net MVC & EF5. The Model has a large enough number of fields that the app will need several pages to collect all of the data. Once the data is collected it is ...
16
votes
5answers
7k views

How can I specify an explicit ScriptBundle include order?

I'm trying out the MVC4 System.Web.Optimization 1.0 ScriptBundle feature. I have the following configuration: public class BundleConfig { public static void RegisterBundles(BundleCollection ...
-2
votes
1answer
51 views
+50

Messages answers Grouped By the Parent Original Message

I need to group messages by the Messages Answers like this: Message id = 1 Message answer id = 2 / Parent Message id = 1 Message answer id = 3 / Parent Message id = 1 Message answer id = 4 / Parent ...
1
vote
2answers
2k views

Persist querystring across requests in MVC 3

I have a page containing a list of clients with an ActionLink that allows the user to display (or hide) "inactive" clients. The showInactive=True is attached to the url as a querystring to the ...
1
vote
1answer
18 views

Can you automatically retrieve a foreign document in your mongodb model using c#?

I would like to setup my mongo db poco models so that they automatically retreive their foreign documents, similarly to how its handled by EF and nhibernate. This is the solution that I have come up ...
0
votes
2answers
17 views

Notification Of Changed XML Values

I guess I'll just flat-out explain my situation. I have a desktop application that reads and writes to an XML file. This same XML file is read and written by an ASP site. Both sides need to be ...
0
votes
1answer
19 views

How do I check the NHibernate version?

I'm supposed to start working on a project written in ASP.NET MVC2, using NHibernate. I'm more familiar with Entity Framework. Is there a way I can check which NHibernate's version the application ...
-1
votes
1answer
20 views

How do I determine the height of an iframe that will contain an external html page?

I have a web application that needs to load the home page of an external application. The page must be loaded within an iFrame in a page on my application. Unfortunately, when I load the page it will ...
0
votes
1answer
19 views

Kendo Upload - Limit Number of Concurrent Async Uploads

We use the Kendo Upload to allow customers to upload large number of files for processing. Some of our customers in countries with poorer internet have run into bandwidth restrictions when trying to ...
3
votes
2answers
107 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 ...
0
votes
2answers
73 views

ASP.NET MVC design issue

I have a main view with 2 partial views (a gridview and a callback panel) This main view receives a IEnumerable<Model> and the panel just receives a Model. When the view is initially called, ...
0
votes
0answers
24 views

Use a Function That Returns Ajax to Ajax.BeginForm's onBegin

I need to return a value of false to Ajax.BeginForm's onBegin, if certain conditions exist. This way I can prevent the form from submitting if certain database conditions exist. However, in order to ...
1
vote
3answers
46 views

ASP.NET view possible vulnerability exposing DB table names to user?

I am currently learning ASP.NET MVC C# Code First. Upon scaffolding the views or using Razor syntax to help generate forms, I notice that the code created sets the html form element names to the ...
0
votes
0answers
10 views

Share Session Between two .net 4.0 web applications (domain and subdomain) using Windows Server AppFabric session cache SECURELY

I have two applications, one on a primary domain and the other on another domain. One is a legacy site and the other is a new site. We are slowly converting the legacy site (4.0) using a mix of ...
0
votes
1answer
16 views

When using a passive STS for authentication in ASP.NET MVC, how can I access the SecurityToken?

I have created a simple ASP.NET MVC (4) application, and I am using the passive profile to authenticate against a remote STS. This all works swimmingly, and I am able to access the claims returned ...
-3
votes
0answers
20 views

SEO Friendly URLs using ASP.NET MVC Routing [closed]

I am working on a website using ASP.NET MVC. I am using ASP.NET Routing to general URLs like : www.site.com/category/subcatogory/?CategoryId=1&SubCategoryId=2 Other option I have is ...

1 2 3 4 5 1235