MVC :: Data Lost In Transition From View - Controller

Sep 28, 2010

MVC basics or looks like I am doing something terribly wrong, but have not slightly idea what is it? Want to delete user from MVC Framework's Built in Security Module. So first I define Delete() in AccountController:

[Code]....

and this works fine. Second: I added view (for delete) DeleteUser.aspx

<h3>Are you sure you want to delete this?</h3>
<fieldset>
<legend>Fields</legend>
<div class="display-label">UserId</div>
<div class="display-field"><%= Html.Encode(Model.UserId) %></div>
<div class="display-label">UserName</div>
<div class="display-field"><%= Html.Encode(Model.UserName) %></div>
<div class="display-label">LoweredUserName</div>
<div class="display-field"><%= Html.Encode(Model.LoweredUserName) %></div>
.... etc
And this works fine.
And then finaly when I submit this values for delete, and run back to the Controller and DeleteUser:
[Authorize]
[HttpPost]
public ActionResult DeleteUser(aspnet_Users inUser)
{
...

It is a problem. Not a single value from View are pased?? For example:

inUser.UserName is null,
inUser.UserId 00000000-0000-0000-0000-000000000000,
... etc.

All values form view are losted? Why and how this can be?

View 4 Replies


Similar Messages:

MVC :: Create A Partial View And A Controller That Will Feed Data To the View?

Jan 27, 2010

Can i create a partial view and a controller that will feed data to the view, and if i render that partial in a Master page, the Data will show on whatever URL i am?

Or is there another way of showing content from database on every page(view)?

View 2 Replies

MVC :: Pass Parameter From Controller To View And Back To Another Controller?

Aug 16, 2010

I have a simple model where a Person has Gifts. I have a view which is a list of Gifts belonging to one Person.

My problem is with the Create action for a new Gift. I want it to default to the PersonID that we are already viewing the list of Gifts for. I tried simply passing the last PersonID (they are all the same)

Html.ActionLink("Create New", "Create", new { id = Model.Last().PersonID }) which works fine if there is already at least one Gift for that person but if this is the first Gift I don't have a value.

My Gift List controller knows the PersonID I want to pass but the view doesn't.

How do I pass this PersonID from my Gift List controller to my Gift Create controller via the Gift List view? Or is there a better way to do this?

View 2 Replies

Forms Data Controls :: Grid View Row Command Event Lost?

Jan 31, 2011

The grid view row command does not execute on my production environment. This is a intermittant issue. I am not able to reproduct the exact steps but it does occur too often.

I have a load balanced environment with 2 identical servers in the farm. The servers are running on IIS 7.5

The other scenario in which I observe this is when the session times out. In that case the grid view events are lost. But this scenario is not a priority for me. I need to resolve the first scenario.

Any help on this or some useful links on "Understanding the session" or "understanding the complete event firing and execution" is welcome.

An update: we are overriding the PageStatePersister as:

[Code]....

View 4 Replies

C# - MVC View Model Text Data Lost After The Post - Display Them In The Case Of Failed Validation?

Nov 12, 2010

I've got a view model that has some text properties. And I use Html.DisplayFor to display them on the screen. But those text data won't be post back, so in the case of failed validation, the returned view won't have those data. How do I handle this kind of situation?

View 2 Replies

MVC :: Get Some Data From One Controller To Other's One View?

Jan 18, 2011

I have a website. there's master page with a menu implemented as a partial view Menu.ascx. This menu is a list of available categories which can be choosen. There's a separate controller for this view. the controller just gets all available categories from database and passes to the view as a list. here's the view's code

[Code]....

and controller for this view

[Code]....

there's other controller which is responsible to retrieve data for content page when one of categories is seletced.

[Code]....

So, i want somehow to get the current category in Menu.ascx.

View 3 Replies

Forms Data Controls :: Drop Down List Values Are Lost When Cancel Is Clicked On Details View?

May 12, 2010

I have a detailsview which includes a drop down list bound to an array. However, when I click on the cancel button the dropdownlist values disappear. I have tried to solve the problem by rebinding the values back into list on the cancel command event, but this has made no difference. Does anyone know how to solve this?

View 2 Replies

MVC :: Post Data From View To Controller?

Mar 24, 2010

I'm a php programmer (code igniter) but interested in learning ASP.net MVC, I have a few question regarding this new exciting framework In php codeigniter's controller I can easily catch a post variable using

[Code]....

In comparison in ASP.net MVC we can create an action method that will accept post variable (but the parameter can get very crowded if we're passing a lot)

[Code]....

Or using FormCollection

[Code]....

Is there a way to catch post variable in ASP.net that looks like php's codeigniter? I mean not by adding the parameter, because I wanted a controller method that is flexible in receiving post request A controller that can accept and process any post request like in php (where we don't have to put that parameter to the controller method, we just call them

[Code]....

View 3 Replies

MVC :: Passing Data From Controller To View

Nov 16, 2010

I have setup an httppost that sends a string into my controller, searches for some results using linq, and then sends the results to a view. In debug stepping through the code I can see the data that I am looking for being passed into the return view statement, but the page just appears to refresh (it doesn't render the view as expected with the result). why my controller fails to redender the view? (note: I didn't include the view because I can send a ToList() to it without an issue. For example, return View(_entities.Persons.ToList());

[HttpPost]
public ActionResult RenderSearch(string usersearchtext)
{
if (usersearchtext != null)
{
var search_results = from s in _entities.Persons
where s.Description.Contains(usersearchtext)
select s;
return View("SearchResult", search_results.ToList());
}
else
{
throw new NotImplementedException();
}
}

View 8 Replies

MVC :: Data From Action In Controller To View

Jan 19, 2011

So I have a dropdown in a form which when at item is selected postback to database and get some values which I am now storing in an object. I need to get the values from this object into textboxes on the form in the view..how can I do this???

View 2 Replies

Passing Data From A View To A Controller In MVC?

Apr 22, 2010

I have a dictionary I'm passing to a View. I want to be able to pass the values of that dictionary back to a Controller action from this same View. Is there anyway this can be accomplished without using a form? The situation is that I need to be able to pass these back to a controller action that is called when a user clicks an ActionLink from the View, and in my experience an ActionLink cannot be used to submit a values of a form, i.e. I've only been able to submit values of a form using the form's submit button. Unless there's a way to use an ActionLink to submit values in a form.Controller Action passes Dictionary to Controller in ViewData:

public ActionResult ModifyNewCrossListing(FormCollection form)
{
Dictionary<int, string> prefixlist = new Dictionary<int, String>();

[code]...

View 1 Replies

MVC :: Passing Data From View To The Controller With Dropdownlist

Jul 14, 2010

I have a table with a ID, CodeID,LibelleID field. I am using oracle connection. i want to display in a drop downlist (textfield) CodeID+LibelleID for exemple "100-SalaryBase" where CodeID=100 and LibelleID="SalaryBase" is it possible to obtain it if the user selects an element from the dropdownlist how to post both the codeID and ID to the controller

View 4 Replies

MVC :: Posting Data From Partial View To Controller

Jan 13, 2011

Im having trouble with posting data from a view that also contains a partialview. Im using a viewmodel that has 2 objects in it. The data that comes from the view is correct and fine, but the data that im trying to get from the partialview is null, or rather the object is null. The partialview doesnt contain that much, the user can check/uncheck some checkboxes and thats it. Heres how the partialview looks like

[Code]....

And heres the View

[Code]....

View 3 Replies

MVC :: Passing Data From View Back To Controller

Sep 23, 2010

I have following situation - I am pasing user info object from Controller to View. It contains GUID UserID, which i dont want to be seen on page. So I removed every Html.LabelFor(model => model.UserID), Html.TextBoxFor(model => model.UserID) etc... from generated View source. And because of this when Html.BeginForm() returns that object back to Controller all values is there but UserID is lost??

If I leave Html.LabelFor(model => model.UserID), Html.TextBoxFor(model => model.UserID) etc.. in View everything is fine. But I dont want to show UserID? Where is the problem here?

<%= Html.LabelFor(model => model.C__User_Id) %>

View 6 Replies

MVC :: Passing ViewModel With Data From View To Controller

Dec 13, 2010

I am trying to pass a view model of mine, which has multiple list in it, to my view. Then in my view i need to edit the different list. Then on my post i need to save the edits. Although, when i pass my viewmodel back to my post, it is empty! Can somebody explain what i am doing wrong? Controller

[Code]....
here is my View

[Code]....

NewsViewModel

[Code]....

View 2 Replies

MVC :: Debugging Controller / View Data Flow

Feb 23, 2010

I've started using ASP.NET MVC on a project and have gotten a few working pages, but I recently ran into a problem where data I was carrying through a hidden field didn't carry for some reason. I can think of a couple of possible reasons and I could try things until something works but I prefer to work on observable empirical data. Thus the point of this inquiry.

I've got a controller (several), a model (several), a view (several), and data in the browser for the JavaScript to chew on. I can unit test my JavaScript code. The browser / view interactions go over the wire, and I can capture that either with Firebug or (if I want to punish myself) Ethereal. I can write unit tests for the controller and for components of the model. The thing that appears to happen in a pure "black box" is the mapping between the model objects and the view form fields. Somewhere in that process, it tries to map data from form fields into model objects before it hands a request to the controller and it tries to map data from the model objects to form fields when it processes the response. Even with the helpers in play, this is a source of bugs. There can be spelling disconnects, or a page might be inadvertently missing one of the fields of a model object because it didn't use it. It would be nice to know if a field didn't map and why.

Since it is happening on the server, this seems like the handoffs should be unit testable or at least loggable. The problem seems pretty bounded. I can't be the first person to have run into this question. Are there any hooks I can use for this? What are the best observation points in the framework to tap the process, both incoming and outgoing?

View 2 Replies

MVC :: Page Data To A View From A Controller Into A Table?

Mar 25, 2011

what's a recommended way to page data to a view from a controller into a table?

View 6 Replies

MVC :: How To Pass Data (not The Part Of Model) From View To Controller

Oct 8, 2010

How Can I Pass data(not the part of model) to Controller from View? View Code

[Code]....

View 4 Replies

MVC :: Methods To Passing Additional Data From Controller To View

Apr 29, 2010

I am getting started with Ap.net MVC. For that i chose to practice it by build an application. Im using MVC 2 and Linq To SQL, and i would like to passing another Query to the view. For example, i have this:

[Code]....

So i would like to pass data1 and data2 to the View. I can use return View(data1), but the View function accept just one data. So what technique i can use to pass the tow data to the view

View 5 Replies

Passing Data From Controller To View Using JSon Object

Mar 4, 2011

I have the following to get the Json abject passed from the controller and populate the various textboxes in the view. However, nothing is happening even though controller is passing a valid Json object. What is wrong with this code?

<script language="javascript" type="text/javascript">
$(document).ready(function() {
var url = '<%=Url.Action("DropDownChange") %>';
$("#vendorID").change(function() {
var selectedID = $(this).val();
if (selectedID != "New Vendor Id") {
//$.post('Url.Action("DropDownChange","Refunds")', function(result) {
$.post(url, { dropdownValue: selectedID }, function(result) {
alert(selectedID);
$("#name").val(result.Name);
$("#city").val(result.City);
$("#contact").val(result.Contact);
$("#address2").val(result.Address2);
$("#address1").val(result.Address1);
$("#state").val(result.State);
$("#zip").val(result.Zip);
});
}
});
});
This is the code in my controller;
public JsonResult DropDownChange(string dropdownValue)
// This action method gets called via an ajax request
{
if (dropdownValue != null && Request.IsAjaxRequest() == true)
{
paymentApplicationRefund =
cPaymentRepository.PayableEntity(dropdownValue);
paymentApplicationRefund.Address1.Trim();
paymentApplicationRefund.Address2.Trim();
paymentApplicationRefund.Name.Trim();
paymentApplicationRefund.City.Trim();
paymentApplicationRefund.Contact.Trim();
paymentApplicationRefund.State.Trim();
paymentApplicationRefund.Zip.Trim();
return Json(paymentApplicationRefund,"application/json");
}
else
{
return null;
}
}

View 3 Replies

MVC :: Data Annotations, View Models & Multiple Controller Actions?

Feb 17, 2010

quick question: I have a view on my HomeController which is used to create a new 'model'. This view posts to a different controller to keep things tidy. The problem I am having is when I enter invalid details into the form, the rules I specified never seem to make it back to the original view and thus my validation messages or summary never get populated. Is there a way around this because I am using a view model with two IEnumerable lists in it.

View 5 Replies

MVC :: Passing Model Object To View And From View To Controller?

Aug 6, 2010

I've got problem with my app .

I've got such classes (this is some kind of tree structure):

[Code]....

[Code]....

in Index() action i've got this piece of code

[Code]....

[Code]....

View 2 Replies

MVC :: Post Strongly Typed Partial View's Data To It's Parrent's Controller

Mar 3, 2011

I'm gonna create profile page for my site. This page includes some 'Partial View' and each part posts some data.

My question is: How can I get posted data (strongly typed) from each partial view separately? Something like this:

[HttpPost]

public ActionResult Home(Model1 model1, Model2 model2, ...)

{
return View();

}

View 4 Replies

MVC :: How To Pass Some Dynamic View Data To A Controller And Then To Java Script Function

Mar 24, 2010

Well i am a sort of a beginner..

I am writing an Application using mvc and c#..

Well i have a View where i have the following code..

[Code]....

View 1 Replies

MVC :: How To Pass A Dictionary Type Of Data From View To Controller Using A HtmlHelper Control

Jun 17, 2010

if I use a Html.Hidden field in my view, when the value click to submit the form I would like to pass this data to the controller. This variable would contain int as key and string as value,

Dictionary<int, string> interestTable = new Dictionary<int, string>();

How can I specify the htmlAttribute fo this variable in my Html.Hidden code?

<% using(Html.BeginForm("Search", "SearchMembers")) { %>
<input type="hidden" name="ResearchInterests" id="researchInterests" value=""/>
<%= Html.Hidden("fullInterestsPath") %>,

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved