Tagged Questions
0
votes
0answers
11 views
ASP.Net MVC jQuery and plugins loaded in wrong order
I'm using ASP.Net MVC and attempting to use the TinyMCE HTML editor.
I added this from NuGet - however, it adds an EditorTemplate (Shared -> EditorTemplates -> tinymce_jquery_full.cshtml), ...
0
votes
1answer
24 views
How to Upload Multiple Files Along with Other Form Fields, ASP.NET MVC
So I have a single form on a page. There are several text input fields and such. Right now there is also a jQuery file upload control wherein you can select several files. The problem I have right now ...
0
votes
2answers
37 views
MVC 3 Entity Framework Error - Item has already been added. Key in dictionary
I am making a MVC 3 web application using Entity Framework but I am getting this error. In my data layer I used a class connection helper.
Error is followig:
Item has already been added. Key in ...
-5
votes
0answers
17 views
How to create Vertical Menu (3-6 levels) Recursively in MVC3 (Razor)? [closed]
I am trying to achieve something similar to this example -
...
0
votes
1answer
36 views
Pass argument to Javascript metod from Ajax ActionLink MVC3.0
I have a problem sending parameter (Id) to javascript function. Let me tell you about the underlying idea: I have a Training model and every training model has 1 Survey. What i do in below code is to ...
0
votes
1answer
29 views
condition not getting satisfied in js in MVC
I am developing an MVC application. I have written some js for comparing two values in a dropdown. Even though the values are the same the condition is not getting satisfied and skipping the code ...
0
votes
1answer
21 views
how to Bind dropdownList using Entity Framework in MVC 3
i want to show a dropdownList on a page using Entity Framework in my MVC app, but i am just stuck here to do this using using HTML Helper. so if anyone having knowledge of entity framework, help me...
...
1
vote
2answers
32 views
Replace Database in asp.net
I use asp.net mvc and using databasefirst entity framework for database connection.I created edmx file and .tt extension file .Now i need to change the database(i.e replace database 1 with ...
2
votes
2answers
34 views
ASP.NET MVC - What is UrlRoutingModule?
I was reading about Request life cycle in MVC. I got stuck in understanding the below line.
The UrlRoutingModule Intercepts the Request
Query - What is UrlRoutingModule?
I searched a lot on ...
1
vote
1answer
30 views
how to call custom method automatically in global.asax
Here is my code and i want to call the my custom method (Application_My()) automatically when application is loaded/refresh every time like Application_OnEndRequest().
Thanks in advance.
<%@ ...
1
vote
0answers
36 views
How to make MVC3 application authenticate both Windows and Forms
I am developing an MVC3 application for a customer service team.
I am using default login and registration controls in my application.
I have to use both Form Authentication and Windows ...
0
votes
0answers
28 views
How to create a Navigatable Tree View Menu in MVC3
I have to create a Navigatable Tree View in an MVC 3 project. This treeview has to be generated from the database.
There will be 3-5 levels for this tree and the final node of the tree view will be ...
0
votes
1answer
28 views
How to avoid the text from the action link
@Ajax.ActionLink(" ","Delete", "FinancialIntermediary",
new { id = item.FinancialIntermediaryID },
new AjaxOptions { HttpMethod = "GET",
...
1
vote
1answer
34 views
Hide a Checkbox in mvc4 without using style
I want to set the visibility of a checkbox to false without using style in mvc3.
@Html.CheckBoxFor(model => Model.Eng, new { @id = "chkEnergy1", @value = "true", @class = ...
0
votes
2answers
39 views
alternate option for getElementById in JS?
I have a MVC app.
I have written JS code below in the "Create" view. The code below code works perfectly in Google chrome and Mozilla Firefox; but it's not working in IE 8.
...
1
vote
2answers
44 views
MVC 3 sending class JSON
My parameter KontrolkaSamTekstLista get null data to controller ActionResult KontrolkaSubmit() but all send action to ajax looks okay.
Class
using System.Collections.Generic;
namespace ...
-1
votes
1answer
21 views
Error occuring in LINQ statement in MVC controller
I am developing MVC app.
I am trying to write a LINQ statement in a controller, but its giving an error...
ViewBag.CompanyIdList = new SelectList(db.Companies.OrderBy(t => ...
0
votes
1answer
51 views
Pass method from MVC to WCF
I made in my controller method that should creat another product
[HttpPost]
public ActionResult Create(ProductType product)
{
if (ModelState.IsValid){
...
0
votes
2answers
24 views
Cross browser compatibility issue for showing and hiding div
I have MVC app.
I have written below code in the JS in Create view.
Basically on the basis of selection on drop down I show and hide the div.
Now the problem is below code works perfectly in Google ...
0
votes
1answer
29 views
how to set default value HTML.TextBoxFor()
i have a view contains of form and textboxes
how to set a default value in each box for strings and int values.
i want when the page load up each box has a value so i dont need to type values.
obs. ...
2
votes
2answers
41 views
Casting error in MVC
I am developing a MVC app. with razor syntax.
I am trying to delete one value from another.
@{
double DeductedAmount1 = @Model.SanctionedAmount - @Model.DeductionAmount;
}
This ...
0
votes
2answers
27 views
ASP.Net , data validation should be in the controller, not the model, contrary to this tutorial example?
I am following ASP.NET MVC Music Store Tutorial by Jon Galloway Microsoft from http://mvcmusicstore.codeplex.com
While setting up this fictitious music store , we have Album.cs as the model with ...
0
votes
1answer
22 views
How to assign value to html body variable in Jscript?
I am developing the MVC application with razor syntax.
I have declare one variable at the begining of the code 'DeductedAmount'
@model PaymentAdviceEntity.PaymentAdvice
<link ...
0
votes
2answers
33 views
Save and retrieve checkbox values asp.net mvc
I'm new to asp.net mvc and currently using MVC 2. I'm struggling with working with checkboxes for days now. I simply need to get checked checkbox values to be saved in database and on Edit view check ...
0
votes
1answer
22 views
how to apply cultureInfo to label in MVC?
I am developing a MVC app.
I have amount fields in my form and I am able to put amounts in Indian decimal style
with help of the following code.
@{
var indianCulture = new ...
0
votes
2answers
33 views
Asp Mvc Redirect Controller
I am beginner in asp.net mvc. I have in the view Home.cshtml
<a href="" style="color:blue; margin-top : 30px;">Créer un nouveau compte</a>
I'd like to associate this link to this action ...
0
votes
3answers
46 views
Validate Date in MM/dd/YYYY format in mvc
I have declared a property in MVC info file like
[Required(ErrorMessage = "End Date has not being entered")]
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = ...
0
votes
2answers
37 views
MVC 3 - passing two parameters from view to controller
I have an issue with passing 2 parameters from view to controller, when assigning them as a button. If I use this code in my View:
@using (Html.BeginForm("Edit", "Shift", new { lineName = item.Line, ...
1
vote
1answer
32 views
Putting commas in amount field in Razor syntax
I am developing a MVC app. I have some amount fields. by default it showing numbers without comma separation. for e.g. if I have amount 500000000 then I want to display it like 50,00,00,000 I want to ...
0
votes
1answer
38 views
Add options to dropdownlist added by javascript MVC
How I can add options to a dropdown list added by javascript? I have the next view in a MVC application
@Html.DropDownList("list1", new SelectList(new ListDictionary()), htmlAttributes: new {@class = ...
2
votes
1answer
57 views
MVC3: How do I bind a model that contains a generic list of a certain class back to the controller? It always is null
The Situation
Within the BuyerOtherInfoModel there is a generic list of BuyerPropertyInfoModels which is called LinkedProperties. When I load my view the editor template iterates through this generic ...
-4
votes
0answers
22 views
ASP.NET MVC3 Authentication for IOS Client [closed]
I access to my MC3 controllers from an ios client. But i can't find how to make authorization since mvc 3 use the tag [Authorize] ...so I can't verify authentication programmatically when I call my ...
0
votes
2answers
40 views
What's the correct syntax to check the income viewbag in razor
i have an action in the controller that returns 3 viewbags.
is it possible to check in razor which Viewbag the controller has sent. ?
here my controller
public ActionResult Details(string ...
0
votes
1answer
40 views
Override partial class field in ASP MVC model
In my ASP MVC project, whenever I add a new table to my project two models are created. One under the Text Templating Transformation Toolkit (file w/.tt extension), and another outside this in the ...
0
votes
2answers
55 views
Add Video in ASP.NET MVC
I am working in ASP.NET MVC. I want to add videos in my view. I have read article on Working With Videos in ASP.NET
But i want a generic way to play all type of videos in my web page. This article, ...
1
vote
2answers
65 views
Validate DateFormat In Mvc
I have a property ExpiredDate define in MVC
[Required]
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}")]
public DateTime? ExpirationDate { get; set; }
I want to Validate if Date ...
2
votes
1answer
33 views
Get [Display] attribute value from resource in MVC
I have used the [Display] attribute for one of my enums:
public enum eCommentType
{
[Display(ResourceType = typeof(FaultManagementStrings), Name = "NormalComment")]
...
2
votes
1answer
58 views
MVC Text box validation issue
I am a beginner of .NET coding.
How can we give validation for a text box in which only positive integers are allowed?
0
votes
1answer
22 views
Elmah in asp.net mvc release-mode only
I've installed Elmah (the standard package with default settings) via NuGet manager console.
For a test and better understanding I tried to reconfigurate it so it runs in "debug mode" only (after a ...
0
votes
2answers
38 views
running code that replaces placeholder text on each razor view MVC4
If I had the following razor pages:
(Excuse the terrible examples..)
Page1.cshtml
Hello @Model.Name, welcome to {sitename}
Page2.cshtml
{sitename} has had @Model.visitorcount today
And at ...
0
votes
2answers
63 views
Success and Error functions not firing in Ajax call
Below is an Ajax call I'm using to determine which menu options to show to users (I know it's a flawed method, just up against a time crunch for a demo). When the page loads, I can step through the ...
2
votes
4answers
52 views
Get id of element which raised event
I am working in asp.net mvc. I have following JS
<script>
function fun()
{
alert($(this).attr("id"));
}
</script>
And following code in View
@
{
int i=1;
}
...
0
votes
1answer
26 views
Determine how many items rendered from controller
I have an ASP MVC view that, at the top of the page has this declaration
@model IEnumerable<Monet.Models.AgentTransmission>
This view will render a list of type AgentTranmsission on the page. ...
1
vote
1answer
41 views
Best way to create dynamic view model in MVC razor on the fly?
The problem is that a have to show dynamically the fields on the web page using MVC and Razor VE depending on the user permissions from the database. Thus, every user has its form and field mappings ...
0
votes
3answers
67 views
MVC3 deploy to a directory, url issue
I have a mvc3 web application which will be delopyed to an directory of a website. the address of the application seems like http://wwww.xx.com/aopo/. aopo is the name of the directory. After the ...
0
votes
2answers
24 views
Determine security on shared layout
In my ASP MVC 3 website, I need a way to determine user security on a shared layout page. This layout page houses a navbar that needs to display drop down items based on a user's security level.
...
0
votes
1answer
68 views
Make Ajax call before page loads
Before the page loads, I need to run a check on the user's security level. This will determine which elements of our nav bar they are able to see. I have tried two methods at running this ajax call, ...
2
votes
2answers
49 views
getting File from server
I'm implementing export to csv in MVC.
Since the parameters are datetime types I need to send the data in post because of user different cultures.
Server Code:
[HttpPost]
public async ...
0
votes
1answer
48 views
What are the major differences between Web API and ASP MVC
The title really sums up my question. I have used both technologies but I am uncertain as to what one offers that is substantially different than the other. In essence:
What criteria and/or ...
0
votes
1answer
32 views
How to POST some properties using an AJAX array?
I want to POST my array data through AJAX posting method.
For getting those values in an array, I have used a ViewModel.
My controller code is as::
[HttpPost]
public ActionResult ...





