The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
47 views

Rendering subcategories on click in asp.net mvc3

I am new to mvc3, developing my first project in mvc3. I have left side bar filled with top categories. On click of top category, I want to display sub categories under clicked category. ...
1
vote
1answer
543 views

how to pass data from View to Controller using ajax get or post in mvc with parameters

I am trying to pass data from View to Controller Action Method using ajax as follows:- I have Membership instance of user which I passed in from another controller to this view below using viewbag ...
0
votes
0answers
99 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 ...
0
votes
0answers
36 views

passing values from a BaseController to the Shared _Layout.cshtml view using ViewModels

Have been trying to pass values from a BaseController to a _Layout view in the shared folder, in a previous version of the application I worked on we used ViewBags but are now looking at using ...
0
votes
1answer
204 views

How to call auto click event in MVC view?

I have MVC application. There is one view which contains some properties and the comment link. when user click on comment link, comment div get expands and all comment are shown to user. now I want ...
0
votes
1answer
427 views

MVC 4 - how do I pass model data to a partial view?

I'm building a profile page that will have a number of sections that relate to a particular model (Tenant) - AboutMe, MyPreferences - those kind of things. Each one of those sections is going to be a ...
0
votes
5answers
178 views

MVC 4 routing / controller logic - something basic going wrong

I had this working yesterday and why it has stopped working is completely beyond me. I have the following, basic scenario: There are two types of roles in my application, Tenant and Landlord. When a ...
1
vote
1answer
359 views

add folders for mvc4 view engine to look for views in

I am working with MVC4 and want to set come custom locations for the view engine to look for views in. At present it will only look in the Shared folder outside of the folder it expects the view to ...
0
votes
0answers
73 views

How to post data from collection of viewmodels in a view MVC 4?

I have a view which is strongly typed with a collection of viewmodels. The view uses a foreach loop to make the controls to edit every viewmodel in the collection, and this is working. What I don't ...
1
vote
0answers
127 views

Is there a way to invalidate the ASP.NET MVC 3 ActionCache

I have an ASP.NET MVC 3 application that uses custom attributes to create select controls for model properties that can be populated from external data sources at runtime. The issue is that my ...
0
votes
3answers
150 views

How to handle “magic strings” in MVC views, e.g. element id:s?

In my MVC views I frequently need to reference various elements from JavaScript, and for that purpose I define the id attribute for those elements. This is often in conjunction with Ajax calls that ...
0
votes
2answers
67 views

How can you do multiple saves of a model in one submit?

I have a model: public class CustomerAttributes { public Int Id { get; set; } public string value { get; set; } } my create view looks like this: <div class="editor-label"> ...
1
vote
3answers
106 views

How can you create a label from one table and store the value in another with ASP.NET MVC

I have a table called Field in my database and a table called FieldValue. My models look like this: [Table("Field")] public class Field { [Key] ...
2
votes
4answers
1k views

How to render a Section in a Partial View in MVC3?

In a MVC3 project, I have a "_Layout.vbhtml" file with this code <!DOCTYPE html> <html> <head> </head> <body> ... <script ...
0
votes
1answer
100 views

Implement a common function in multiple Razor views

In a View, I have a Razor code like @Code Dim x As String = "MyTest" End Code However, how can I share that code with other Views without copy/paste it in all the Views?
0
votes
1answer
171 views

MVC view rendering does not respect data passed in a view model

I am attempting to create an MVC action method that allows users to progressively review a sequence of database records. Each time a user posts an update, it is submitted to the database and a new ...
1
vote
1answer
299 views

mvc3 Reflect data annotations off a concrete class from an inteface

I am trying to abstract my view model from various types of views. The entire thing compiles without a issue but I am having issues with "reflecting" (formally known as unboxing) the data ...
0
votes
0answers
53 views

Column ordering in the MVC Visual Studio - default List template View

Started working with MVC 3 web framework in Visual Studio 2010, and with first tutorial, setting up a View which lists all my database table data, created with Entiity model, have searched for simple ...
1
vote
3answers
89 views

Must the first view must always be called index.aspx?

I have created a controller called loginController.cs and i have created a view called login.aspx How do I call that view from loginController.cs? The ActionResult is always set to index and for ...
1
vote
2answers
199 views

MVC FindView slow on application start

Is there anyway to run through the application and pre-populate the MVC ViewCache to eliminate the 2sec time loss that can sometimes occur during the warm-up of a web app? At current whilst our ...
0
votes
0answers
96 views

best practise creating mvc 2 view with partial views and one big model

i have a question concerning the best practise creating a mvc 2 view with partial views having one big model. sorry, if there is any answer somewhere but i couldn't find something helping me. out of ...
1
vote
1answer
253 views

how to have two forms in one View, working separately and well, in ASP.NET MVC 3?

I have two action methods. One of them submits the inserted data of a "new product", and the other form must upload the photos of that product. Each one has it's own Model, View, and each one calls ...
0
votes
1answer
94 views

View action link is not passing values to controller actions

I have the following view: <h2> Contract</h2> @Using Html.BeginForm() @Html.ValidationSummary(False) @<fieldset> <legend>Hire Contract</legend> <div ...
2
votes
2answers
223 views

MVC ASP.Net how do I add a second model to a view? i.e. Add a dropdown list to a page with a html grid?

I have been able to find lots of examples of adding a Dropdown list to a view but I need to add a dropdown list to a view that also has a Webgrid on it. This entails two different models and from what ...
1
vote
1answer
191 views

MVC3 View For Loop values initialization

So I have a for loop in my View that is supposed to render out the input boxes. Now inside these input boxes I want to put lables that disappear when you click on them. This is all simple. Now it's ...
0
votes
1answer
502 views

Change Selected = true in SelectedListItem in ASP.NET MVC3 View by condition

This is my Model: public class MyModel{ public string Name { get; set; } public string listType { get; set; } public string SelectedItem { get; set; } } I have a partial view: @model ...
1
vote
1answer
1k views

Add CSS class to Html.ActionLink

I want to style a link in my page and am using Html.ActionLink to create the link. The problem is I don't know how to style the resulting link. How do I add a CSS class to the Html.ActionLink in ...
1
vote
0answers
172 views

How to get the view object (System.Web.Mvc.IView)

How can I retrieve a view object in the same project from any controller? This StackOverflow answer suggests using System.Web.Mvc.ViewEngines.Engines.FindView but I can't derive an ...
2
votes
1answer
1k views

mvc httppost href parameters

I'm currently working in ASP.NET MVC 4 with EF 4.0. I have an unordered list with listitems. Each listitem contains a name and address and is clickable. Now I want to make it so that, when I click the ...
0
votes
1answer
117 views

how can i display the full decimal points for my Decimal(10,4) field

i have a database field with the type of Decimal(10,4) at my SQL server 2008, but on my asp.met mvc view the values will only be displayed with two decimal numbers ,, so let say the value in the ...
1
vote
2answers
200 views

Using keywords in asp.net mvc3 views

I am using MVC3 framework to design a website. I pull the data in the controller from the ms sql database and one of the columns in the table is named as "do". When I try to create a view to display ...
0
votes
0answers
409 views

Retrieving Images from Blob Storage to set set them in view

I am using the following piece of code from blob tutorial at https://www.windowsazure.com/en-us/develop/net/how-to-guides/blob-storage/#configure-access I was successfully able to upload the image ...
1
vote
1answer
293 views

MVC - The call is ambiguous between the following methods or properties

I can't figure out why I'm getting this error. I only have one class with one method in my project that looks like: public static class Extensions { public static string Chop(this string s, int ...
1
vote
2answers
147 views

DRY principals vs. light/thin views in MVC for similar/inherited objects

I have a series of inherited objects that are all very similar with just a few fields varying between classes. At the base of this class hierarchy is an abstract class that contains many several ...
0
votes
1answer
225 views

How much server side code in MVC views

I have been developing MVC 3 applications using Razor. I was wondering how much code would be acceptable in my views. There were situation where I needed to create, instantiate and use an object which ...
3
votes
3answers
753 views

Reuse MVC View for both Display of Data and Editing of Data

I have two MVC views... one for displaying details and one for editing the values. They use almost identical templates with the exception that the DisplayFor is changed to the EditorFor when ...
0
votes
1answer
83 views

The checkbox alsways return false to the bool property [closed]

Working on MVC app. Any idea why the checkbox in my view always return false to it's corresponding bool property? Thanks
1
vote
1answer
299 views

How to do unit test for view in ASP.NET MVC

Is there any way that can I write a unit test for Views in my ASP.NET MVC application? I need to validate the button names, title, etc. stuff using such tests.
0
votes
3answers
179 views

MVC 3 using the same model in two similar views with non-nullable types

I am using the same model on two similar views. One is a users profile view, and the other is the Administrator view for that same page. The administrator's view uses a couple more flags that the user ...
2
votes
2answers
667 views

How to bind Dictionary type parameter for both GET and POST action on ASP.NET MVC

I want to define a view which displays a list of label and checkbox, user can change the checkbox, then post back. I have problem posting back the dictionary. That is, The dictionary parameter for the ...
2
votes
1answer
622 views

How to render XML data from controller to view efficiently

I am working on a project that requires that I render XML data (that would be my model). Its basically going to be represented in a row - column format similar to your standard database ...
2
votes
1answer
165 views

MVC - open page in View mode

Hi I am trying to see if anybody has a briliant idea on how to implement View mode concept in MVC. So if the user opens a page, the page should open in view mode (all controls disabled), if they dont ...
5
votes
3answers
1k views

C# view as embedded resource always show a old view after building

I have a MVC2 website which uses views from other assemblies. To do this, I marked the view as "Embedded Resource". I was able to see the view but now, when I change the view I can't see the changes ...
3
votes
2answers
5k views

ASP.NET MVC Render View to a string for emailing

I want to use MVC views to create the body for an email and I have come across this (http://www.brightmix.com/blog/renderpartial-to-string-in-asp-net-mvc/) but it doesn't seem to work with strongly ...
0
votes
2answers
2k views

Displaying HTML from a Database by using MVC 3 (ASPX ViewModel)

I'm using MVC 3 (the ASPX ViewModel) while I store and display data from my SQL database. I've tried using the raw input to store it as well as using HttpUtility.HtmlEncode. Neither are working when I ...
1
vote
1answer
274 views

How do I put a strongly-typed-view WebForms .aspx template in a nonstandard location in ASP.NET MVC2?

So, I personally think this is sort of whack. I put a .aspx template in a nonstandard location. In this example, it has a virtual path of ~/Content/Sites/magical/Index.aspx. I then created my own ...
0
votes
1answer
345 views

Bind a list with nested list

Model public class PdfPage { public IEnumerable<PdfPhoto> Photos { get; set; } } public class PdfPhoto { public string path { get; set; } } View <ul> <li> <%= ...
0
votes
1answer
210 views

how to save text in app_resource. asp net mvc c# metatags

I have all my text inside view coding. I preffer to save it in app_resources, because i would to add other languages in future, and its look quite cleaner. I just know that I need to use metatags in ...
0
votes
1answer
824 views

paging with asp.net mvc c#

Hello its my code where I giving out paging of view: <div style="float: right;"> <%= Html.RouteLink("<<", new { page = 1 }, new { title = "first page" })%> <% if ...
4
votes
2answers
5k views

Why do ASP.NET MVC3 Areas and Razor Views produce this error?

The view at '~/Areas/SomeArea/Views/List/Index.cshtml' must derive from ViewPage, ViewPage, ViewUserControl, or ViewUserControl. The project structure is pretty much default. There is one area called ...

1 2