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.
0
votes
0answers
24 views
How to use parameters in Twitter Bootstrap loaded dynamically from the database
I have a website where I need multiple themes.
So www.mysite.com/Client1/ uses red buttons and www.mysite.com/Client2/ uses blue buttons.
The number of clients are dynamic stores in a DB, and the ...
0
votes
2answers
79 views
MVC 4 Controller JsonResult
I have a question related to my controller in MVC.
I want to loop inside my JsonResult GetAfmeldingen using foreach.
But what I do will not go inside my foreach
here is my code as it looks right now
...
0
votes
1answer
23 views
Error in File downloading file from a folder in MVC2
I am encountering a problem in getting the download prompt. In the below code first am allowing the user to upload a file to compress. Once the file is compressed the user should be provided with the ...
1
vote
2answers
38 views
Which way is better to populate the Dropdownlist in MVC?
I Have a List like
IEnumerable<SelectListItem> Users;
I can populate the Users Items in Dropdownlist by 3 way
1-Use ViewModel
Public class myViewModel
{
...
0
votes
1answer
15 views
Getting ActiveDirectory title using Membership
I have got a project with Membership.
I want to aquire the users' titles.
I don't see any suitable property. Is there any I can use?
If not, what provider do you recommend?
0
votes
0answers
29 views
Excluding properties from a viewmodel
I have a viewmodel that contains a CustomerModel e.g.
public class MyAccountViewModel
{
public CustomerModel Customer { get; set; }
public LoginModel Login { get; set; }
public ...
-1
votes
1answer
27 views
How to retrieve user data from two different tables using entity framework
I want to retrieve data of particular user from two different tables such as "Organizations" and "SystemUsers" in which the company details are stored in "Organizations" & his personal info. is ...
0
votes
1answer
12 views
ASP.NET MVC meta keywords language characters?
Controller
public ActionResult Index()
{
ViewBag.Title="ŞiğişçöÖÇŞİĞÜ Yedek Parça Türkiye";
}
View
<meta name="keywords1" content="Üşçiöğı" />
<meta name="keywords2" ...
0
votes
1answer
18 views
How can I have editor templates for Nullable<DateTime> as well as DateTime?
What do name the template files is my main question? If if have @model DateTime? in one, can I use it for straight DateTime?
MS seems to have dropped the ball with editors for some nullables.
1
vote
2answers
49 views
Why is my float automatically rounding and how do i get it to stop [duplicate]
Why is my float automatically rounding and how do i get it to stop
float pageCount = 10/6;
should be 1.666
but it is giving 1.0
0
votes
0answers
32 views
dynamic form designer in asp.net mvc
I am working on an asp.net mvc project which require dynamic form designer. Where there will be a list of controls there and user can select and put that control.
There will be a toolbox panel just ...
0
votes
0answers
33 views
Using Kendo UI ASP.NET MVC Wrapper with AngualJS [closed]
I need to use Kendo UI ASP.NET Wrappers with AngularJS in ASP.NET MVC 4 web application.
I searched but not getting any example of using Kendo UI Wrappers with AngularJS on web.
Please provide the ...
1
vote
2answers
30 views
how to hide or show links based not only on roles but other business logic
My MVC application has a handful of roles. ex Admin,General. I use a CustomRoleProvider but then in the view I do following
@if (Roles.IsUserInRole("admin"))
{
<div ...
0
votes
1answer
40 views
asp.net using mvc 3 applying kendo ui
sir can anyone lend me a hand in fixing my program.. im using kendo ui in my asp.net mvc. the problem is the records in the database is not being display everytime i run the program it just display ...
0
votes
5answers
57 views
MVC 4 Views, common or specific?
This is my first time using MVC, first time writing a web application as well.
So far, I managed to have a view for a list of employees, and an edit view for the Employee model.
If I had 25 models ...
0
votes
1answer
28 views
How to disable the default JQM page in a SPA?
I have a single page JQM application - all JQM "pages" are in one document:
<div>
@RenderPage("Views/login.cshtml")
@RenderPage("Views/page1.cshtml")
...
0
votes
1answer
17 views
passing string with html tags to controller in asp.net mvc
I'm using asp.net mvc2 and I want to implement a rich text area, and passing the contents in this textarea to controller. However, I found that since the contents of rich text area contains html tags, ...
0
votes
1answer
85 views
The entity or complex type ' ' not be constructed in a LINQ to Entities query
I hope someone can help me because when i edit my code . an exception shows
THIS IS MY CONTROLLER
public IEnumerable<APPLICANT> GetApplicant()
{
IEnumerable<APPLICANT> applicantdata ...
4
votes
2answers
51 views
C# EF Code First Deploy to Godaddy
I am having issues deploying my app to godaddy hosting using EF code first. I dont want my app to create the database since the database already exists.
So I read some posts on here and placed this ...
0
votes
1answer
16 views
getting actionlist to send current url to actionresult
I'm trying to pass my current url to my actionresult but returnUrl always comes up null
@Html.ActionLink("Create Student", "Create", "StudentCenter", new{ returnUrl = Request.RawUrl}, new { ...
2
votes
2answers
28 views
ASP.NET MVC Areas localization
I have an ASP.NET 3 MVC site with areas. The structure is like this:
Areas
Products
Views
Advanced Search
Detail
Great Products
Views
Advanced Search
Detail
Currently I can access ...
0
votes
1answer
58 views
Get dropdownlist selected option from C# list of objects
I have an list of objects that I receive in my Razor View in C#
@model IEnumerable<Project.Models.EvaluationObject>
In each object of the IEnumerable I have a property called "MaxValue" that ...
0
votes
0answers
20 views
MVC4 Text is missing on post and no exception is thrown
When I post text input into a multitext field if it contains a < followed by a ? the attrubute is null.
(I cannot even post the 2 together here as sentence is truncated from that point.)
...
1
vote
3answers
58 views
Shared login in two MVC Projects? Why?
Imagine when you create a new MVC4 Project and you start registering an account using SimpleMembership and you logged using Remember Me checkbox.
Now, when you create another MVC 4 Project, the ...
0
votes
1answer
26 views
Get user name and surname by user id FB Api
In the Facebook API is there a way in which I can get a user's name and surname by user id?
I am using FB API in my ASP.NET MVC application and I am using the MultiFriendSelector to let the users ...
0
votes
3answers
50 views
MVC 4 - Unable to update a partial view via an Ajax call
I have an MVC 4 view that contains a partial view. The partial view is included in the main view as follows:
<div id="PartialView">
@Html.Partial("_PhotoList", @Model)
...
1
vote
4answers
29 views
Assign a dynamic string to the ID of an element
I want to assign a dynamic string to the ID of an element.
Here's how my input element is:
<input id = 'ac'+ @item.index />
notice, I am assigning 'ac' + @item.index
@item.index is the ...
-1
votes
1answer
45 views
How can I move a file from one bucket to another programmatically [closed]
I am trying to do an image upload in which I upload images to a bucket called "MyImagesTemp" and then at a certain point i would be able to get the file name and move it from MyImagesTemp to ...
0
votes
1answer
25 views
Binding Numbered Arrays in MVC
I'm seeing an odd (to me) issue where I am attempting to post an array of integers based on checkboxes. When the values are not posted in order, the model binder doesn't seem to function in a way ...
2
votes
1answer
51 views
In ASP.NET MVC 4, where is the connection between controller and view stored?
New to ASP.NET MVC, I understand that, if I right-click in an action within my controller, the context menu gives me Add View, and Go To View. Where does the app store that connection? I have ...
1
vote
1answer
34 views
Model (ViewModel) binding when model needs dependencies injected
I'm using Ninject for dependency injecting in an ASP.Net MVC application (This is my first project using Ninject or DI at all for that matter).
I'm opting to using the Model-View-ViewModel pattern. ...
2
votes
1answer
23 views
ImageResizer not working after deployment to IIS7.5 integrated mode, ashx style url works
I'm using ImageResize.net in an MVC3 site.
It works correctly on my dev machine (using iis7.5 integrated mode) and does not require the use of ashx extension for resized images.
I've deployed to ...
0
votes
1answer
41 views
Jquery UI datepicker renders in every tr except the last
I have a piece of jquery code that gets dynamically called, and generates any number of tr tags. In each tr tag I have an input of type text set to the jquery ui datepicker. The datepicker will ...
1
vote
3answers
70 views
ASP.NET MVC 4, EF5, Unique property in model - best practice?
ASP.NET MVC 4, EF5, Code First, SQL Server 2012 Express
What is best practice to enforce a unique value in a model? I have a places class that has a 'url' property that should be unique for every ...
0
votes
1answer
44 views
Object not set to instance error with class invocation
I set up three models. I'm not sure if I did it the best way, but it's the way I could understand it easily. I invoke the DepartmentProfile class. The first user found is not a manager so it goes ...
0
votes
0answers
34 views
Why is my display template not applying classes?
I have DisplayTemplates for String and DateTime?, like these:
@model String
@Html.TextBoxFor(m => Model, new { @class="read-only"})
@model DateTime?
@{
String modelValue = "";
if ...
0
votes
1answer
29 views
specifying data bind attributes in twitterbootstrap.mvc
I am using knockout js and twitter-bootstrap.mvc4....
I am not able to combine those two to specify the customer data binding attributes
@Html.TextBoxFor(m => m.Id, new Dictionary<string, ...
0
votes
3answers
33 views
Unobtrusive Client side validation in MVC4 not working
I have layout page with all scripts as shown below.
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Site</title>
<link href="~/favicon.ico" rel="shortcut ...
1
vote
2answers
21 views
Razor encodes quoted html attributes
I'd like to conditionally render appropriate HTML to the client using this construct:
<input type="button" value="Foo" @(string.IsNullOrEmpty(Model.Identifier) ? string.Format("title={0} ...
0
votes
1answer
25 views
How to avoid Race Conditions when a restful architecture doesn't make sense
I'm making a website that I don't think makes sense to implement with a restful architecture (at least not the portion relevant to this problem), but it's causing some problems with race conditions ...
1
vote
1answer
23 views
Routing issue in Global file
Routes Information
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = ...
0
votes
2answers
35 views
How can I reference a *.min.css file in an MVC4 StyleBundle? [duplicate]
I am using Kendo UI in an MVC4 application. I've decided I want to move my CSS and JS references to bundles. I created a bundle like so:
bundles.Add(new StyleBundle("~/bundles/baseCSS").Include(
...
0
votes
0answers
12 views
Dynamic DBSet generation by package manager console
I try to generating my dbset properties for my referenced model project but i can't get all names of classes
what a need to do is:
PM> $models= here i need do get all names
PM> foreach ($model ...
1
vote
1answer
22 views
Date not being displayed properly when using jQuery mask
I am trying to use this jQuery plugin as an input mask on my ASP MVC edit page. However, no matter what the value is being stored in the database, the month is always displayed with two zeros: ...
-4
votes
0answers
18 views
Which specs should a web developer know? [closed]
For example, the spec for HTTP 1.1 is RFC2616. What other specs should I, and other web developers, be familiar with, or at the very least skim over? I'm primarily a web developer on the Microsoft ...
0
votes
1answer
30 views
multiply model values on html
I use asp.net-mvc, entity framework. My view is like below:
<td class="center">
<span id="spanitem_@item.UrunId">@item.Fiyat</span>
<input type="text" ...
0
votes
1answer
18 views
need of Expression in InputExtensions.TextBoxFor
Method syntax:
public static MvcHtmlString TextBoxFor<TModel, TProperty>(
this HtmlHelper<TModel> htmlHelper,
Expression<Func<TModel, TProperty>> expression
)
...
0
votes
2answers
17 views
Converting string of XML with <?xml version=“1.0”?> in it to XML
I am having issues with converting string to xml.string is in this format
String s = "<?xml ...
0
votes
1answer
24 views
Breezejs update - Latest version of Breeze.WebApi fails on Metadata
I am building on Hottowel spa template and my solution was working fine for Read, Save and Update. Delete was failing though with "Object reference not set to instance of object". At this point the ...
1
vote
1answer
23 views
Set selected item of DropDownListFor in view
In my ASP MVC site I want to be able to select a default drop down list item in the view. However, the overload I'm currently using seems to just add another item to the drop down list instead of ...








