ASP.NET MVC 4 is the fourth major version of the ASP.NET Model-View-Controller platform for web applications.
1
vote
2answers
8 views
How to apply input which has a type email to to HTML Helper in Asp.net MVC3 Razor
How to apply input which has a type email to HTML Helper in Asp.net MVC3 Razor.
For example:
<input type="email" name="name" value=" " placeholder="example@mail.ru" />
Is there alternative ...
0
votes
0answers
15 views
FluentNhibernate not working with PostgreSQL
I'm new to Fluent Nhibernate and PostgreSql and I'm stuck witha problem I need to extract data from the postgresqldb but the code I used is not working for postgre but the same code is fine with MSSQL ...
0
votes
0answers
14 views
MVC Model text field in db
I have a model with the following property
public string ExtraNotes { get; set; }
Is there any data annotation to make this be a field of type text in the db? At the moment it will become an ...
0
votes
2answers
39 views
MVC4 cannot map object properties to JSON from AJAX POST
Model:
public class JsonRequest
{
public string Data { get; set; }
}
Action:
[HttpPost]
public ActionResult Index(JsonRequest data)
{
return new JsonResult()
{
...
0
votes
0answers
20 views
MVC4 WebSite 404 Error on IIS7
Set-up
I have a website built in Visual Studio 2012 using MVC 4 and .NET framework 4.5.
It is being hosted on a Windows 2008 and running IIS7.
I am using a VS2012 "Web Deploy Package" to deploy to ...
2
votes
4answers
50 views
asp.net mvc @Html.CheckBoxFor
I have checkboxes in my form
I added at my model
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CorePartners_Site2.Models
{
public class ...
0
votes
0answers
9 views
View Switch doesn't work with 51Degrees
I have got a MVC4 application where I used 51Degrees (Lite) to detect device and accordingly select the mobile (.mobile.cshtml) or desktop (.cshtml) view. 51Degrees can properly do that job. However ...
0
votes
1answer
28 views
ASP.NET MVC and HTML5
I have been looking into HTML5 and I am really excited to try it out.
As a framework I would like to use ASP.NET MVC, but I am unsure how it works with HTML5.
Are there (i know there are, but not ...
2
votes
0answers
49 views
Entity Framework setup issue
When I run my code
using (foodEntities db_Linq = new foodEntities())
{
return db_Linq.Database.Exists();
//return db_Linq.Foods.Any();
}
I keep getting this error in the output window.
...
1
vote
2answers
36 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
{
...
1
vote
3answers
62 views
Hide a QueryString parameters, how?
I have a url: like this one: http://www.example/about/49.
I want it to be seen as http://www.example/about/, but I must have this parameters passed as QueryString parameters.
Is it possible ?
1
vote
1answer
20 views
Implementing a blog entry link
I am developing an application like a blog engine. On a view for a home page, I have a link as
<a href="/Blog/BlogEntry/2013/05/22/title for this blog entry" />
when user click on that link ...
2
votes
2answers
34 views
How to load different views on different desktop browsers
I am creating ASP.Net mvc4 application..In this, I want to load different views for different browsers on desktop version..
In mvc4 we can load different views for desktop vs. mobile but here I want ...
0
votes
0answers
25 views
date controls compare validation
I'm looking of a way to perform data compare validation that validates "from" > "To" on the data model client and server.
Like this:
public sealed class CompareDatesValidatorAttribute : ...
1
vote
0answers
46 views
How can I convert sql to linq
This is my SQL query
SELECT
sys.sysobjects.name Name,
sys.foreign_keys.*
FROM
sys.foreign_keys
inner join sys.sysobjects on
sys.foreign_keys.parent_object_id = sys.sysobjects.id
WHERE
...
0
votes
1answer
17 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.
0
votes
1answer
34 views
Partial view is not updating image in ASP.NET MVC4
I have a view on which two partial views are rendered.One partial view(lstContactPerson) contains the List of contacts(image and other details) and action buttons for View/Edit/Delete.On Edit ...
0
votes
5answers
56 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
14 views
ASP.net MVC HTML5 Toolkit - support default textbox values?
I stumbled on the ASP.net MVC HTML5 Toolkit and it looks great. However, I don't see any way to include a default value for HTML5 textboxes whereas this is possible using the standard MVC textbox.
...
0
votes
0answers
26 views
Windows Azure, ASP.net MVC 4 - Issues with pages
I am completely new to Windows Azure and we don't have many people around the office that knows the technology, and those that do are out of the office and unreachable. so I turn to the community.
I ...
0
votes
1answer
15 views
Simpleroleprovider causing remote transaction inside transactionscope
I am in the process of upgrading asp.net membership to the new simplemembership provider in MVC4. This is an Azure/Sql Azure app which runs fine on localhost but fails when deployed. I have code in ...
0
votes
0answers
19 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.)
...
0
votes
0answers
11 views
RuntimeBinderException when passing Dynamic Type model
I have a table with Id, Col1, Col2, Col3,Col4
With below linq query, I create a model and pass it it to strongly typed following view and everything works just fine
var cse = ...
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
2answers
46 views
Invalid expression term error in the code
Error 1 The best overloaded method match for 'int.TryParse(string, out int)' has some invalid arguments
Error 2 Argument 1: cannot convert from 'int' to 'string'
It gives me error in ...
0
votes
2answers
36 views
How to mix server side code in razor
A trivial question but the solution escapes me at the moment
We have a CMS where the Layout and CSS ( names only, no extension ) are retrieved from db !
the .cshtml has this code which does NOT ...
0
votes
3answers
49 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)
...
0
votes
0answers
13 views
Is there a bundling solution that respects media queries?
Does the Client Dependency Framework support media queries in the link tag? I'm looking for a solution that will minify and bundle the sass generated css appropriate for the device viewing the page.
2
votes
2answers
80 views
Sql parameter are not getting replaced
I am trying to create a new table in my databased based on a csv file. Since I don't know what columns are in the csv file I am creating a SqlCommand at runtime. Here is what I have so far.
public ...
0
votes
0answers
10 views
asp.net mvc play audio when clicking on link
I want to play audio when user click on a button. Let's say we have something like that:
Hello world (Playbutton1)
My name is Peter (Playbutton2)
Now when a user clicks Playbutton I want a ...
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 ...
0
votes
0answers
30 views
Ajax, I want use a search box in my layout view, but it fails when I am not on the “home/index”
my script that runs the ajax commands,
$(function () {
var ajaxFormSubmit = function () {
var $form = $(this);
var options = {
url: $form.attr("action"),
...
1
vote
3answers
39 views
MVC 4 _Layout.cshtml dynamic CSS
I have a problem where I am trying to have a default CSS page, but depending on certain aspects can have their CSS changed. Groups of people can have their CSS changed to their own custom version via ...
1
vote
3answers
69 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
0answers
19 views
jQuery server-side datatables loaded from MVC4 partial page
I am using jQuery Ajax UI tab and C# MVC4 . When I click on a tab, it loads partial view from the server.
In one tab (i.e. partial view), I have jQuery DataTable which uses server side processing. ...
3
votes
1answer
26 views
AssemblyBinding BindingRedirect not working for MVC4 app with T4MVCExtensions
We have a large .NET web application that was MVC3, using T4MVC. We recently upgraded it to MVC4, and all is good except for T4MVCExtensions (version 3.6.5 from NuGet) is still dependent on ...
0
votes
0answers
25 views
SimpleMembership - Add email to UserProfile - System.Data.SqlClient.SqlException: Invalid column name “Email” error
I'm fairly sure I have followed all the steps, but seem to have missed something. Using simplemembership in MVC4 app. Add Email to UserProfile table and in the Register and UserProfile models, added ...
0
votes
0answers
33 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
27 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
1answer
42 views
why isn't jscript displaying my items?
I have the following Javascript:
$(document).ready(function () {
$.getJSON("api/products/",
function (data) {
$.each(data, function (key, val) {
// Format ...
3
votes
0answers
30 views
Failure writing to log file with RavenDB Embedded on Windows Azure
I am running an MVC web site on Windows Azure and using RavenDB embedded. If the web site is "cold" (unloaded from the Azure instance), I get the following error message on the first hit to the web ...
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
32 views
Cannot pass a repository parameter to a specific controller
I am using simple membership for account registration and I need to store extra data when the user registers. I'm using Ninject for dependency injection and I already have a repository that gets a ...
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
)
...
2
votes
0answers
34 views
Html.BeginForm in a partial view?
I have a block of code that uses the Html.BeginForm to submit a value from textbox to controller. When I put this in a View, it works fine. That is, the controller's action method is called. However, ...
0
votes
0answers
8 views
Allow runAllManagedModulesForAllRequests for one controller
I need to turn on runAllManagedModulesForAllRequests for a particular MVC controller that expects a filename as its parameter (i.e. http://server/api/file/00_08112010MC41670.txt), but I don't want to ...
1
vote
1answer
32 views
ASP.NET MVC 4 Zip Code Validation
I am using ASP.NET MVC 4 and I am looking for a attribute for Zip Code Validation
[Required(ErrorMessage = "Zip Code is Required")]
[ZipCode]
public string ZipCode { get; set; }
I know this doesn't ...
0
votes
0answers
25 views
What does the web.config compilation/assemblies element do?
I had a problem where, working on a new MVC project, as soon as I added Html.Partial("Name") to my _Layout.cshtml page, ASP.NET would throw this exception on page load:
error CS0012: The type ...
0
votes
1answer
22 views
Azure with Azure SQL Server: ArgumentException: Value does not fall within the expected range
Never seen this on our local servers, but after deploying the MVC4 application and the SQL Server database to Azure we sometimes get the following exception, how to tackle this problem?
...


