Tagged Questions
0
votes
0answers
3 views
How to Automatically generate GUID in asp.net mvc4 form while insert data to Db
How to Automatically generate GUID in asp.net mvc4 form while insert data to Db
i need to add GUID data type to my table and need to insert automatically 16bit value while submit other data
0
votes
1answer
24 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
vote
1answer
24 views
MVC XML Model as Property on another Model
I have a model with this property:
[Required]
[Column(TypeName = "xml")]
public string Data { get; set; }
And a Model to represent that data:
[XmlRoot("data")]
public class Data
{
[Required]
...
0
votes
2answers
31 views
ASP.NET MVC - Propagate a server side event to the client
In my ASP.NET MVC app, the user clicks a button on the UI to make a phone call. An ajax request goes to the MVC app, which calls a phone dialer -- a method in library that calls an external component ...
9
votes
2answers
113 views
What is the difference between @Html.ValueFor(x=>x.PropertyName) and @Model.PropertyName
@Html.ValueFor(x=>x.PropertyName)
@Model.PropertyName
It seems like these two Razor commands do the exact same thing. Is there any special circumstance or benefit of using one over the other?
2
votes
1answer
22 views
Controller always receive null from json only a specify field
Hy folks!
First: I've found these posts before start my question here: questions/11344035 - questions/15939944 - questions/9412449 - questions/9162359 - questions/1551263.
Second: none of then ...
-1
votes
1answer
28 views
MVC4 Would it be wise to choose Unity as DI container just because it is from microsoft? Possible duplicate
Possible duplicate
How to choose a DI container
I believe everyone goes through this dilemma of choosing the right DI container.
I read questions regarding this here but they are kind of outdated and ...
1
vote
3answers
32 views
Rendering LabelFor doesn't display the overwritten getter function
pardon me if this is a noob question but I have already searched on SO, google, and spend over an hour with an ASP.NET MVC 4 PRO book reading on Rendering Stronly Typed Helpers etc. I am just ...
0
votes
0answers
15 views
How Httphandler Reusable memory works?
I created a HttpHandler and following is the setting in the Web.config
<add verb="*" path="*.png" type="MvcApplication1.Handler2"/>
Isresuable = true in HttHandler
Let's say, I have 20 users ...
0
votes
2answers
24 views
MVC4 in visual studio 2010 and visual studio 2012
What is the difference between using mvc4 in visual studio 2010 and mvc4 in visual studio 2012.
I have a project created in mvc3 using visual studio 2010, now I need to move it to mvc4.So much ...
0
votes
0answers
19 views
ASP.NET MVC 4, Code First, View to Create/Edit Object with Many to Many Relationship
I have the model (code first) & database (SQL Server) setup with many to many relationship & seeding fine:
A Place can have many tags (eg Restaurant, bar, cafe) - and tags can belong to many ...
2
votes
1answer
27 views
ASP.NET MVC4 Drop Down List in Create View For Model
I am trying to create a drop down list within my create view. For example, I want the drop down selection "AM" to map to the value "0" for the "Wednesday" property within my model. So far, I have this ...
0
votes
0answers
8 views
high cpu in mvc4 app connecting to wcf
I have an asp.net MVC 4 application that calls a set of WCF services co located on the same server part of a load balanced environment. The server is 64 bit Server 2008 with 32gb of RAM, Xean 2.5Ghz.
...
0
votes
2answers
31 views
Null reference when using model value in the view
I am declaring my values in web.config
<appSettings>
<add key="SystemName" value="RealState Premium" />
<add key="SystemDescription" value="Sistema de Administração ...
0
votes
1answer
20 views
Best way to set-up a config file to store parameters in asp net mvc 4
I am starting Asp Net MVC4 project and since I am comming from php development I am curious about what would it be the best way to set-up a configuration file to store parameters like system name, ...
1
vote
2answers
65 views
simple regex for a series of numbers and dots. N{3}.N{3}.N{3}.N{3}
I have an ASP.NET 4.0 MVC app in C# and I need to create a regex that will match N{3}.N{3}.N{3}.{N{3} where N{3} is any 1, 2, or 3 digits(0-9) e.g.
1.1.1.1
111.111.111.111
1.111.111.1
I ...
1
vote
1answer
42 views
Calling Function upon field change in MVC
I have a entity called WorkOrder which gets assigned to an Employee.
I want send an email notification when the workorder has been asigned. This can happen on my MVC Create or Edit Action (POST).
...
0
votes
1answer
40 views
ASP.NET MVC Adding item to ListBox
I am very new to MVC, and I would like to have an Add button that adds the text in a text box to a list. I am very lost on how to go about doing this. Thanks.
1
vote
2answers
51 views
How to use Knockout's data-bind attribute in Mvc helpers like Html.EditorFor()
I tried this
@Html.EditorFor(model => model.Name, " ", new { data_bind = "value:firstName" });
and other possible overloades but none of them seem to work.
The rest of code:
<script ...
0
votes
1answer
31 views
ASP.NET MVC 4 website - Elmah vs Elman.MVC nuget package - which to use & why?
I have Code First MVC 4 application.
I tried installing the NuGet package for logging Elmah - and everything seemed to work fine - Errors were reported fine at http://myapp/elmah.axd
I then noticed ...
0
votes
1answer
24 views
Downloaded MVC application is not loaded in Visual Studio 2010
I am newbie in .NET Development.
I just downloaded a built application and using the following products:
MVC 4 framework
Visual Studio 2010 Ultimate
Windows 7 Ultimate 64 bit
But when I try to run ...
1
vote
1answer
35 views
Redirecting from Login Viewto ChangePassword View in ASP.NET MVC4
I am creating a very simple ASP.NET MVC4 Mobile application, that require a Login page and after successful Login the user is redirected to a landing page ( list of orders).
If the Login process ...
8
votes
4answers
64 views
How to create an ActionController to work both at run time and with ajax
I have an AddressBook controller that will return a list of "folders" (basically groups / locations). This may be called via an AJAX request or within a MVC page itself at render time.
How can I ...
2
votes
1answer
34 views
object doesn't support this property in jquery mvc4
@Scripts.Render("~/bundles/jquery", "~/bundles/jqueryui", "~/bundles/WorkbenchScripts")
@Styles.Render("~/Content/WorkbenchCss")
<script type="text/javascript">
$(document).ready(function ...
0
votes
1answer
13 views
Dont get an attachment with email asp.net mvc 4 Model.ProjectInformation = null
I have feedback form on my site and I need to add attachment to email
I have
@Html.TextBoxFor(model => model.ProjectInformation, null, new { type = "file", @class = "input-file" })
=
...
2
votes
2answers
42 views
How to remove model state error for dropdown with selected option label in mvc?
I am working on a MVC project.I have a view having a dropdownlist with an option label "Select Task".Now the integer property bound with this dropdown is not a required field.
But then too after I ...
-3
votes
0answers
22 views
asp.net site not rendering in Internet explorer 8,9 [closed]
I have asp.net Mvc site www.ipracticemath.com . It is rendering correctly in Ie10 and latest firefox , chrome browser .
http://www.ipracticemath.com/math-problem/Division/1341 There are ...
0
votes
4answers
40 views
MVC - What is the meaning of RouteContext?
I was trying to understand the Following statement
If the UrlRoutingModule successfully retrieves a RouteData object then
the module next creates a RouteContext object that represents the
...
0
votes
1answer
30 views
MVC4: making the area work for beginner
I wanted to try and use area (just trying out). I added a area foo to my project: right click on the project then add area.
That folder contains sub folders where I can add controllers, view, models ...
0
votes
2answers
32 views
How to check model values in View Model from Javascript in MVC4
I want to check that a Model value is NULL or NOT NULL in my view model in JavaScript, using mvc4.
How would I check this?
How do I get the values from my Model in JavaScript in the View model?
1
vote
1answer
28 views
What us the purpose of the Editable attribute if not to control editing on a field?
Nearly all my properties in my view model are decorated with [Editable(false)]', but when I scaffold a view, that usesEditorFor` these properties, they are all still editable on the form.
Must I now ...
0
votes
2answers
23 views
MVC 4 Passing model from one controller to view and from view to other controller without users able to edit all fields
Im kinda new in MVC4 and im not able to figure it out.
"CustomViewMOdel" "CustomViewMOdel"
"ControllerX" ----------------> "VIEW" -----------------> "ControllerY"
My ...
0
votes
1answer
33 views
Error running MVC4 on Azure
We sometimes getting an error starting our MVC4 site on Azure. Never seen these errors on our local servers. After deploying the database and the application to Azure, troubles occur starting the ...
0
votes
2answers
44 views
ModelState is false while posting editor view containing editor template
I have the following model class:
public class BASLPAcademics
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int BASLPAcademicID { get; set; }
...
0
votes
0answers
21 views
Combining ValidationAttributes and a condition, using composition
On my current project I have a view model that looks like this:
public class DerpViewModel
{
public string Derp { get; set; }
public bool HasMultipleDerps { get; set; }
...
0
votes
3answers
77 views
ASP.NET MVC4 - JQuery jqFancyTransitions error: TypeError: $(…).jqFancyTransitions is not a function
I have my Index.cshtml view, and for some reason, the JQuery is having a hard time firing the jqFancyTransitions method (it's acting as if the jqFancyTransitions library isn't included). The ...
1
vote
1answer
73 views
Controller doesn't redirect after form submit
I'm new to ASP.net MVC and I am struggling to make this work at the moment. I have a controller method called Add, it looks like this:
public ActionResult Add()
{
// check user is authenticated
...
0
votes
1answer
23 views
Is there a better way to get an older value after an EntityState.Modified in EF5?
I just want to know if it existe a better way to get the value in database after an EntityState.Modified. My syntaxe :
db.Entry(UserProfile).State = EntityState.Modified;
var olderPhoto = ...
2
votes
1answer
49 views
ASP.net MVC4: Using a different model in a partial view?
I am just learning ASP.net MVC so please bear with me if I am bad at explaining my issue.
Is it possible to use a different model in a partial view than what is being inherited in the view?
My view ...
0
votes
1answer
40 views
Why is DisplayFormat DataFormatString not working?
I have a property in my view model as follows:
[Editable(false)]
[Display(Name = "Date")]
[DisplayFormat(DataFormatString = "{0:yyyy/MM/dd}", ApplyFormatInEditMode = true)]
public DateTime ...
0
votes
2answers
45 views
How to show a sidebar in all pages in mvc4 except 2
We currently have a site which has a section LatestNews, required:false defined in the layout
and all views except two have the section which have the same call RenderPartial("ShowLatestNews")
Is ...
0
votes
1answer
43 views
ASP.NET MVC DropDownListFor Model binding
I am trying to bind a dropdown to my model, but I am having issues. My model that is passed into my HttpPost function is NULL, but only if I try to bind to the "product" object's CategoryID field. If ...
0
votes
1answer
16 views
Dispose jqTree object completely
I need to reload data depending on a query result, but after I pass all the information to the treeview object again, the parent node is lost. I have tried to reset the json object and it doesn't ...
1
vote
1answer
68 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 ...
4
votes
1answer
67 views
HttpContext.Current.User != HttpContext.User?
Is HttpContext.Current.User in global asax not the same as HttpContext.User in an action method? I assigned the user some roles, but they seem to get lost.
The code below shows what is happening. ...
0
votes
2answers
24 views
Return to index, with selected value (Jquery, ASP.NET)
In my ASP.NET MVC 4 Project, At my index page, I have a dropdownlist where I want to 'redirect' the selected value back to the same index page.
I wrote a basic function but I have no clue how I can ...
2
votes
1answer
28 views
What's the difference between RouteCollection and Route Table
Can you tell the difference between RouteCollection and Route Table?
I tried a lot to search at Google. But could not found any references.
0
votes
2answers
31 views
Add attachment to email asp.net mvc 4
I have feedback form on my site and I have <input type="file"> in my form, so sometimes it will be need to add attachment to email.
I created <input type="file"> in my form
...
1
vote
2answers
39 views
ASP.NET MVC4 Validation
I have a View model
public class TrainingProgramScheduledDateVM
{
public bool IsTuesday { get; set; }
[DataType(DataType.Time)]
public string TueStartTime { get; set; }
...
1
vote
2answers
42 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()
{
...





