Tagged Questions
0
votes
1answer
72 views
Passing values into a strongly typed MVC 2 view?
all.
I am relatively new to Microsoft's new implementation of Model View Controller. I'm creating an app in MVC 2.
I have a strongly typed view called "CreateAlbum" that's tied to a model class ...
0
votes
1answer
263 views
MVC 2 - Update View based on drop down selection
I'm learning ASP.NET MVC 2, what I'm trying to do is quite simple:
I populate a drop down with a list of product types
When the drop down value changes I post to the model and pass through the ...
1
vote
2answers
118 views
How to submit the form using JQuery and not with full postback?
How to submit the form using JQuery and not with full postback ?
Right now I am able to submit the form with full postback. But it takes time to respond back.
Any help to share the Video tutorial ...
0
votes
2answers
101 views
MVC 2 - Display first result only in for each loop
I've got what appears to be a fairly basic loop:
<% foreach (var item in Model.Items.OrderByDescending(b => b.ItemDateTime)) {%>
Instead of looping through all the items I just want to ...
-1
votes
1answer
41 views
Typecast two model and Return other model
public static Coupons.Domain.RejectedCoupons CoupontoRej(Coupons.Domain.Coupon coupon) {
Coupons.Domain.RejectedCoupons a = coupon;
return a;
Help ...
-3
votes
1answer
138 views
Line break in string when the length is more than 10 char
I am working on MVC 3. The problem is that I want to break the string if its length more then 10. The string value coming from data base as User name. I want to apply that string on a image..
Example ...
0
votes
1answer
159 views
Pass values from User Control (MVC 2, Json)
these are the following technologies i am utilizing in my current project:
- WCF
- MVC 2
- Json
I'm just new with MVC 2 and Json. My question is, how do you pass values from a User Control back to ...
0
votes
1answer
152 views
Binding form values to a complex type
I've used the MVC pattern for a while now and have been getting on fine, however I've got totally stuck.
I have a view which shows a collection of complex objects, with a partial view as follows:
...
6
votes
4answers
400 views
Passing model property expression to view
I want to have a way of getting a view to focus on a particular model property from a controller in a generic way.
What i have so far is:
Controller:
// To become an extension/base class method
...
1
vote
3answers
87 views
Good practice to have a data-only controller in MVC?
I'm using ASP.NET MVC2 and have various controllers in various areas.
In many of these I need to select a value from a list of values contained in a database; selecting a product or an employee for ...
0
votes
1answer
94 views
Using a WISON OR200 in web application ( MVC )
Few days ago i bought a WISON OR200 sensor for a web system that i am developing.
I used the SDK that sent to me the enterprise and was been testing in a window application and worked fine but i ...
0
votes
1answer
58 views
Trying to use IIS Express with MVC2 Webform Hybrid Application
I am working on a Web application that is a Hybrid of Webforms and MVC2. (using .Net 3.5)
So far I have been developing using the Visual Studio web server but am trying to switch to use the IIS ...
2
votes
1answer
78 views
GET different url based on inputbox
I'm using the asp.net MVC pattern of having a url like controller/action/id. This works fine if I navigate to the url directly.
I want to have a page where the user can input the id and click a ...
1
vote
1answer
166 views
Server side for datatables in MVC not working on deployment
I am using server side processing for my datatables in MVC 2.0 . I have a controller which I am using to handle the incoming requests.
When I view the page on my localhost , it works fine and this is ...
0
votes
1answer
70 views
Why is my MVC2 Page HtmlEncoding a html helper but only when it is inside a link tag?
I have this really strange problem. I have written a HtmlHelper...
public static class MaterResourceLocationHelper
{
public static HtmlString GetMasterLocation(this HtmlHelper htmlHelper)
...
0
votes
2answers
101 views
How to change Label value in MVC2
In my application (written in c#) I have a textbox and a submit button.
If the user clicks "submit" without entering any value, I want him to stay at the same page and display a message saying "Please ...
2
votes
3answers
80 views
Validating complex class in MVC
Consider the following code:
public class AccountNumber
{
[AccountNumber] //This validator confirms the format of the account number
public string Value {get; set;}
public int Format { ...
1
vote
1answer
78 views
Receiving post from flash in MVC 2
I hope you can help me with this one.
I have a flash-movie on my webpage, which makes a post when its done playing. I want to catch that post and update a session.
I get the following "post-error" ...
0
votes
0answers
92 views
Use a hyperlink to preselect a dropdown item
I am looking to use a hyperlink to preselect a dropdown box item. The link would be on a different page. I have a contact us form with a dropdown list to determine where the email goes. I want to ...
0
votes
2answers
444 views
ASP.NET Email Form Return message after form is submitted
Sorry if this has been addressed. I just can't get it to work. I have a email contact form. I have the form working ok. It is sending an email. However, after the form is submitted I was either a ...
1
vote
1answer
112 views
MVC View Model Organization
I'm new to MVC and I'm trying to understand how to organize my ModelViews. The first problem is Drop Down data. I have an Equipment Model and an EquipmentViewModel that looks like this:
public class ...
1
vote
2answers
138 views
Including Javascript only if it has not yet been included in .NET MVC
In a .NET MVC partial view, I'd like to do something like this:
<% ScriptCollection.RequireScript("path/to/script.js"); %>
That would require a method in the ScriptCollection object that ...
0
votes
0answers
150 views
Enter conditional values either or validation in asp.net mvc2
In my form I have phone and mobile number fields I need to guarantee that the user enters at least one of the numbers. I don’t want to force the user to enter both numbers.
I looked at this previous ...
0
votes
1answer
339 views
Adding a class to Html.MenuItem's
I've got a HTML list of menu items generated by MVC 2.
<%= Html.MenuItem("Home", "Home", "Index")%>
<%= Html.MenuItem("Login", "Login", "Account")%>
Which generate in HTML:
<li>
...
0
votes
0answers
52 views
MVC Maintaining Parent Model Name on Rendering new Editor with JSON
I have a page that has two address inputs, person one and person two. Both use an editor
<%: Html.EditorFor(m => m.personOne, "EditorAddressDetails")%>
<%: Html.EditorFor(m => ...
1
vote
1answer
138 views
Namespace missing when aspx pages being compiled. MVC2, .Net4
I have my data model in project A, in the namespace ProjectA.Model.MyEntities . In project B (an MVC2 project), I reference project A. But when my pages are requested, they are choking saying that ...
0
votes
2answers
181 views
Error after migrating a solution from MVC 1.0.0.0 Visual Studio 2008 to MVC 2.0.0.0 Visual Studio 2010 (IControllerFactory )
After migrating a solution from MVC 1.0.0.0 Visual Studio 2008 to MVC 2.0.0.0 Visual Studio 2010 I get the following error:
The controller factory type 'MyLib.MyControllerFactory' must implement ...
1
vote
2answers
195 views
Does accessing the database from ViewModel violate the MVC principle?
I am writing an application in MVC2 using Entity Framework
As I know ViewModel has to contain only data without any logic to database. Suppose I have Product class that is ADO.NET entity that has ...
1
vote
2answers
1k views
Allow public access to one controller
I am using MVC 2.0 with forms authentication.
I want to allow public access to one controller called "Logout".
Currently whenever I browse to it i get bounced to Login.
here is my config
...
0
votes
1answer
949 views
Child action/partial view is not being rendered when called in asp.net mvc 2 application
I'm sure it's something small (or maybe big), but my child action isn't working. I have a childaction that populates a List with year values. This list is to be displayed via a partial control. I see ...
4
votes
2answers
258 views
Is there an automated way to find unused views in MVC?
Does any one know a way to find out unused views in project ? with Resharper or without it.
any idea which is easier than writing down all the views and go through all controllers and check manually ...
0
votes
1answer
34 views
Is it possible to add additional fields to the url, when processing a request in asp.net mvc2.0?
This may be an odd situation but here is my current problem:
I am building an application which is environment driven(ie. Dev/Staging/Live)
So as a user comes to the app for their first ...
5
votes
2answers
730 views
Creating MVC Delete button extension - How To Extend MVC's Html helper?
ASP.NET MVC 2 renders a link (i.e. <a>) to delete records.
It can be harmful to allow delete actions through GET actions, so I want to do the delete by issuing a POST.
I've created the ...
0
votes
1answer
230 views
RSS read in MVC view
I want to load RSS data into a view but don't know where to start.
below in a sample feed URl:
http://rss.cbc.ca/lineup/topstories.xml
how can I use the url above and show news in a view?
1
vote
1answer
283 views
Display an image file in MVC
I have an object that contains:
the image itself (type: {System.Drawing.Bitmap})
image type (type: string, i.e. "gif" / "jpeg")
hyperlink (type: string)
I want to display the image from this ...
1
vote
1answer
180 views
Creating a list from ENUM into Model
I got the following model piece of code:
public enum EnumTest
{
[Description ("Enum Text 1")]
Value_1 = 1,
[Description ("Enum Text 2")]
Value_2 = 2,
}
public List<Fields> listFields ...
1
vote
1answer
546 views
Jquery readonly text box invisible on post to MVC controller
If the user clicks the use above address the value is set in Address1 and is disabled.
The value is not passed in the form submit but I can get it from the model.Address in the Controller. If ...
0
votes
1answer
54 views
Unable to determine why the URL does not include application folder within IIS
Assume that the application is physically located at:
C:\inetpub\wwwroot\MyApplication
This has been converted into an application via IIS 7.5 and I am now able to access the application via...
...
0
votes
0answers
91 views
MVC-validtion from other page not visible control on my page
i am having a webpage in MVC in which some controls(say control 1) are visible on basis of some controls(say control 2)seletion criteria.
if control 1 is mandatory to fill if visible on page its ...
1
vote
1answer
1k views
dynamic update target id in Ajax.ActionLink
i have this code in a grid and I want to have UpdateTargetId of the action link, div id to be changed for each row
<%: Ajax.ActionLink("Select", "GetCodes", "BvIndex", new { id = o.Id }, new ...
0
votes
1answer
193 views
Caching 99% of my MVC3 pages
I have an index web page on my site. 99% of the page is the same for every user. The 1% different is the div that says "Welcome John" or "Welcome Tony". I would love to have the benefit of caching but ...
1
vote
2answers
107 views
Why does a model accessor with the name “State” cause the model to be posted as null?
I was having a weird issue with a very simple model. When posted back to the controller, the model was always null. Not being able to find the issue, I pulled it apart rebuilt the model, adding an ...
0
votes
0answers
94 views
How to get view and render it using custom ViewEnging in MVC?
I need to get view/partialview from some location(not default location) and to render it.
I thought to create custom ViewEngine. I thought the following:
1 - Return Plugin as action result that takes ...
1
vote
1answer
1k views
MVC asp.net, get data from textbox into javascript function in view
any thoughts on this?
I'm using MVC2 in VS2010. I have javascript in my view to put markers on a google map. I need to get the address and distance from text boxes,
<%= Html.TextBox("address") ...
0
votes
1answer
382 views
mvc server side validation help
I have one question I am sure someone over here will know the answer for sure.
I am trying to put server side validation for a textbox in MVC website.
Here is what I have:
<% using ...
1
vote
1answer
603 views
Shouldn't MVC ignore images by default?
If there is 1.jpg image, so it is downloaded and showed
<img src="Content/Pages/1.jpg" />
But, if there is no 1.jpg image in Pages folder, so I get the following error
The controller for ...
0
votes
2answers
126 views
MVC 2 post-render extensibility point (custom action filters, even?)
I've got an .net MVC2 project, and I can't find a method to override which will allow me to perform some logic following a page render...
I'm currently using the OnActionExecuted / OnActionExecuting ...
0
votes
2answers
136 views
How to password model from view to controller in URL.RouteURL
How do I pass the model from the view Confirm to CareController in URL.RouteURL?
View (Confirm)
<% using (Html.BeginForm())
{ %>
<%: Html.ValidationSummary(true) %>
...
0
votes
1answer
274 views
ASP.NET MVC: making MicrosoftMvcValidation.js work with dynamically created controls
I'm currently using MicrosoftMvcValidation.js to do client-side validation on a large web application we're developing. It works fine up until the point where we start adding controls after the page ...
0
votes
1answer
52 views
User isn't authenticated till the next page request
I have this following mvc application
The problem is when Im trying to assign profile values:
// Attempt to register the user
MembershipCreateStatus createStatus = ...
