Tagged Questions
0
votes
0answers
9 views
Mvc Html Helper for NVD3 charts
I want to create a MVC html helper for NVD3.js charts.
javaScript code is as below. I want to render this code from server side as below
@Html.PiechartFor()
any suggestions?
nv.addGraph(function ...
0
votes
2answers
31 views
Declare Decimals in MVC 4 Controller Parameters
This is the error that I am getting right now:
The argument types 'Edm.String' and 'Edm.Decimal' are incompatible for this operation. Near equals expression, line 1, column 156.
I know that this ...
0
votes
1answer
28 views
Creating Enums Dynamically
I am working on MVC project and i have One Enums Class in my model folder which is as follows :
public class Enums
{
public enum eSiteName
{
[Description("Site 1")]
...
3
votes
1answer
39 views
enum values in drop down list using ViewData and th viewcode to list it?
How can I create a dropdown list using an enum value in ASP.NET MVC 4?
I have a Language enumeration:
public enum Language
{
English = 0,
spanish = 2,
Arabi = 3
}
And my property is:
...
0
votes
1answer
23 views
how to handle thank you or response pages in mvc
I'm very much a web forms man and am coming over to mvc using mvc 4.
Am I missing something or is the norm with a thank you or response page to create a separate view and direct off to that.
So for ...
0
votes
3answers
24 views
How to show required field validation conditionally from a view
In My MVC 4 application, I have a Multi Select List Box, where I can select multiple values, I also has an Item New Role as one of the list items, which also refers to a model property NewRole.
So ...
0
votes
0answers
25 views
authentication after implementing Secure Token Service in MVC4
I have implemented LocalSTS in MVC4 using identity and access tool in MVC4.
After successfully login in the website it is throws an error as
HTTP Error 401.0 - Unauthorized
You do not have ...
0
votes
1answer
36 views
How do you remove old version of entity framework in GAC?
Yesterday I posted a question about a issue related to entity framework version after installing MVC 4 on visual studio.
Somehow visual studio is still pointing to the old version of the dll ...
0
votes
1answer
32 views
How do I pass a link through ViewData in MVC 4?
still pretty new to MVC and its logic
I have a controller that has something that looks like
if (test1 != test2)
{
ViewData["Return"] = "<a href =\ "http://alpha.pm.com" ...
0
votes
1answer
27 views
Bind Model in javascipt function and pass it to Controller
I am opening a aspx page "Test.aspx" from a mvc view using Window.showModelDialog(),and this page is returning some value in a javascript function(window.returnValue) on that MVC view,Now i have to ...
0
votes
2answers
75 views
JSON date serialization issue in ASP.NET MVC 4
In a MVC4 application, I'm passing my view model to the controller action method AsyncUpdateOrderLine:
function updateQuantity(sender) {
...
var model = @Html.OrderToJson(Model)
...
2
votes
1answer
47 views
MVC4 grid pictures/icons
I've got a DB of hyperlinks with pictures/icons of those links. I've got them to display on my view but I want to grid them on the page, three pictures wide. Does anyone know how I can do this?
...
0
votes
1answer
60 views
Jquery PopUp (using in MVC )showing in Chrome but not in IE
<div id="dialog"></div>
<table>
<tr>
<td style="text-align: right">
@Html.ActionLink("Craete New Set1", "CreateNewSet1", ...
0
votes
2answers
55 views
How does asp.net mvc convert post data to a model?
I am extracting some code from a project outside of the MVC-area to a HttpHandler while reusing as much code as possible.
To make things easy I would like to convert the posted data to the same Model ...
0
votes
0answers
30 views
Calling a Service layer from a base class with no access to a repository
Not sure if this should be posted here or on the Programmers sister site
MVC4 solution using AutoFac for ORM.
I have a series of controllers which inherit from a basecontroller class.
We have a DB ...
0
votes
1answer
37 views
Cannot perform javascript function and met “Microsoft JScript runtime error: Object expected”
I have the error which is "Microsoft JScript runtime error: Object expected" in my 'Create.aspx', and the following is my code and I have import the jscript file. Is it the jscript version different ...
0
votes
2answers
88 views
Opening model pop-up in MVC4
I want to open a model popup from a view in mvc4. Sceenshot of that popup page is >
I don't know how to open a model pop-up in MVC?
Currently i am using window.showmodeldialog,but it is not looking ...
2
votes
1answer
226 views
The type or namespace name 'ScriptBundle' could not be found (are you missing a using directive or an assembly reference?)
using System.Web;
using System.Web.Optimization;
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ...
0
votes
1answer
46 views
Why ObjectId is empty while passing model to controller?
I've just started using MongoDB and i have problem.
While i try to pass object to controller which containts Id (ObjectId), this Id is empty
My View code:
@using (Html.BeginForm()) {
...
1
vote
1answer
50 views
ViewBag Memory Leaks
I have a function that creates a list of objects and return it to be stored in the ViewBag.
The code will look like:
List<XDocument> xDocs = readXmlFiles(path);// a "new ...
0
votes
0answers
30 views
How to code an add row button which bind the HTML.EditorFor() Function automatically in asp.net MVC 4?
I need to create an add row button which my sales can add in many sales items, so how can I create an add row button which automatically bind with the HTML.EditorFor function?
@model ...
0
votes
1answer
51 views
No parameterless constructor defined for this object in mvc4
using Michell.ClaimsAuditAdmin.Models;
using Mitchell.ClaimsAuditAdmin.Repositories;
using Mitchell.ClaimsAuditAdmin.Web.Models;
using System.Web.Mvc;
namespace ...
0
votes
2answers
111 views
How to use Razor instead Jquery ajax to get data from a function
I never use Razor in asp.net MVC so I really don't know how it works.
Every time I want to tag a function in my Controller I use jquery ajax and I write very javascript code and my projects are very ...
-1
votes
1answer
47 views
Rich Web UI development on Microsoft stack [closed]
I'm looking for the latest technologies, frameworks and libraries to develop my n-tier web application. Will employ MS-MVC 4 platform for that, but need a rich UI functionality (similar to the way its ...
0
votes
0answers
22 views
Store data in session variable in asynchronous call
When a user logs on the website I'd like to make a web service call to an external service so I already have cached the data in a session variable when the user asks for it.
The problem is that I ...
0
votes
0answers
17 views
How to solve multiple databases in one edmx for ASP.net MVC?
After I searched around on Google and Stackoverflow, I understand that I need to ask because I'm newbie about MVC.
My question is How to use multiple databases on edmx?
I think if I can put entity ...
1
vote
1answer
93 views
Classic ASP to MVC
Right - going to be blunt. I've used classic ASP for what seems like an age and a half.
I would like to start making use of the .NET framework and MVC in particular seems to be something that is ...
0
votes
1answer
35 views
Adding telerik reference and using telerik controls in view page
i want to add telerik.dll reference to the application and use the telrik controls in my application. i added the reference and added namespace in web.config file as
'add ...
4
votes
3answers
89 views
In proper MVC, does everything have to be a model, view, or controller?
Something I have been wondering but somewhat too embarrassed to ask until now: In "proper" MVC (strictly adhering to the pattern), does everything have to be a model, view, or controller? If not, can ...
0
votes
0answers
33 views
What is the best way to handle 404 and other application Exception in MVC 4.0
What is the best way to handle 404 and other application Exception in MVC 4.0.
Should i create a custome controller and view to manage the exceptions or only enable the custom error on in web config ...
0
votes
1answer
65 views
Sending monthly emails automatically using mvcmailer
In my MVC application, I have this scenario. At the 25th of every month, certain users has to be fetched from the database and an email should be sent to them as alert. I am currently using mvcmailer ...
0
votes
2answers
65 views
Are all MVC models lightweight?
So I was first introduced to the idea of a model when I learned WPF. The MVVM concept of a model seems to be more aligned to general 'business logic' encased in a class/set of classes. When I look at ...
0
votes
1answer
33 views
Why are my querystring parameters being doubled up in the post body of my ASP.NET MVC 4 Application?
Here are the relevant bits of my
Viewmodel:
[Display(Name = "One Per Line")]
public bool OnePerLine { get; set; }
[Display(Name = "Comma Separated")]
public bool CommaSeparated { ...
1
vote
1answer
80 views
One-to-many relationship mapping: Cannot add or update a child row: a foreign key constraint fails
I'm making my mapping of a simple database structure, but can't figure out what is wrong. I got a one to many relationship between Company and User. One company can have many users. In the database ...
1
vote
1answer
125 views
MVC4 authentication & authorization for custom database
first of all I wanna say that I know there are many topics about this and I'm also searching the web to understand the whole concept that mvc deals with the security and keeping user information etc, ...
1
vote
1answer
140 views
How to send html - css email in MVC 4?
In my website, I need to send a data table to the client via email. I want the table in a good format. I've heard that inline style doesn't work on Outlook so I think about CSS.
I have no idea about ...
0
votes
1answer
68 views
Regex pattern where matches img tags
Using MVC, look at this example where we have the following HTML code:
<p>Duma</p><img url='..' /><p>Duma</p>
I would like that print only the content of the tags, as:
...
0
votes
1answer
125 views
I cannot get the Telerik MVC extensions grid to show a total with ClientFooterTemplate
I am using Ajax binding and so I am assuming that if I want the total to update after the user edits a change, I need the ClientFooterTemplate as opposed to just the FooterTemplate which works.
Here ...
0
votes
1answer
46 views
What is the string format to display the zeros (minimum 3 digits) after the decimal point in cshtml view page?
If the value is 3, then it should be display as 3.000, that is minimum to three decimals.
For eg., if the value is 2.05, then it is displaying as 2.05 as it is. But, it needs to be display as 2.050.
...
1
vote
1answer
25 views
Unit testing OnResultExecuted
Has anybody tried unit testing OnResultExecuted method?
I have a simple controller that renders notification messages and then clears them.
public class NotificationController : BaseController
...
0
votes
2answers
63 views
Clear text with JavaScript in MVC 4
I've the following search box:
@Html.TextBox("SearchString", "search...", new { @class = "SearchTxtBox" })
A text box with a default text "search...", I want to clear the text when the user enters ...
1
vote
2answers
107 views
properties of View Model are not set on HttpPost
My View Model code:
public class Step2ViewModel : MultiStepBaseViewModel
{
public IList<LayoutDetail> LayoutConfig { get; set; }
}
My View code:
@model ...
-1
votes
3answers
54 views
How do i implement two controllers in MVC
I am trying to implement ApiController in my StudentController, but the thing is that I have to implement BaseController also.
When i do this, it doesn't work
public class StudentController : ...
0
votes
4answers
149 views
mvc model with foreign key relationship
I am having data annotation validation issue with model containing model of foreign object.
Lets say
Class Foo
{
public virtual Int Id {get; set;}
[Required]
public virtual ...
0
votes
1answer
56 views
Im choosing Picture from folder and when i press submit im getting error cant save to database
When i try to press the submit button in the View, im getting redirected back to Create and the nothing gets saved to the database. BUT! when i remove the information can be saved in th database. And ...
3
votes
1answer
77 views
mvc validation message - correct localized on localhost, english on server
on my dev pc the message are shown correctly in dutch.
but on the server, all the validaton messages are english ???
to be sure the current culture is 'forced' correctly, i've placed this in my ...
2
votes
1answer
212 views
Select multiple table with Linq to Sql
I have two tables. There is one-to-many relationship between these tables.I want to select Company table and BankAccount List table (for appropriate CompanyID).
How can I do it with Linq-to-Sql?
...
0
votes
2answers
355 views
How to authenticate via LDAP or Active Directory using MVC 4?
I've found many threads about authenticating using LDAP but it's more about asp.net webforms and MVC 3 not 4. I'm using VS2012 MVC 4 Web Application and Internet Application project template. I'm ...
1
vote
1answer
216 views
Partial View Based Web Site - Asp.Net MVC 4
I'm working on a project and i have to deal with some unusual design for me. My goal is to work with 2 different simultaneous work area. Left one should change its value between 2 different partial ...
0
votes
0answers
133 views
@Html.DisplayName is not displaying EmailAddress Properly
I am trying to display like this
var value = "Kartheek@gmail.com"
@Html.DisplayName(value)
Result is : com only.
why? what have to use in this case
here i am explaining more
My intention is ...








