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


Similar Messages:

C# - How To Pass A Value From MVC Controller To Webforms Control Inside MVC View

Dec 24, 2010

My way to ASP.NET MVC was not across ASP.NET Web Forms, so it's hard for me to understand how better to pass value from ASP.NET MVC controller to ASP.NET webforms script which is inside MVC View.

For example, controller action:

[Code]....

How to assign a value of myvar from a controller action to par1 variable in the View instead "stubvalue"?

View 3 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

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 :: 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

Data Controls :: How To Pass Data From View To Controller In MVC

Apr 15, 2014

how can we pass data from view to controller in Asp.net mvc

View 1 Replies

MVC :: Trying To Pass A Parameter From A View To Another Controller

Apr 18, 2010

i have a view /categoria/index

[Code]....

i am trying to call the action from /imovel/index

with an id

but the thing is that i am getting null

[Code]....

View 2 Replies

MVC :: Pass Message From Controller To View Using Viewdata

Feb 13, 2011

I want to pass a message from the controller to a view using Viewdata. Here is my code:

public ActionResult Create(FormCollection createPage)
{
try
{
......................
ViewData["Message"] = "Success - rec added!!!!" ;
return RedirectToAction("Index");
}
catch (Exception e)
{
ViewData["Message"] = "Exception: " + e.ToString();
return RedirectToAction("Index");
}

On my View I have:

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>::><%: ViewData["Message"] %><::</h2>
<h3>==><%= ViewData["Message"] %><==</h3>
<p>

This is Index.aspx page in Controller folder

</p>
</asp:Content>

I am getting result with empty ViewData["Message"]

View 4 Replies

MVC :: How To Pass Specific Information From View To Controller

May 25, 2010

My view has a number of rows.

Each row has a drop down, a text box and an "add" link. I'd like for someone to select something in the drop down, edit something in the text box and pass that information to an Action in the Controller.

I know i can do something like this:

[Code]....

[Code]....

Which is kind of gross - id like to do just call one action, that passes the selected drop down value, the textbox value and call just the one action, is it possible to do something like this:

[Code]....

Where i pass the Dropdownlist selection and the textbox value to my controller specifically

View 3 Replies

How To Pass All The Local Variables In One Controller To View

Jan 16, 2011

In asp.net mvc3, I've got a few local variables in one of the controller, is there any neat way to pass all these variables to view? Something like "locals()" in python?

View 1 Replies

MVC :: How To Pass Strong Typed List From View To Controller

Jun 15, 2010

[Code]....

for List<AnswerInfo>,

[Code]....

now, what i want to do is to place few textboxes on a view that allow users to input the Answer Text. after click the submit button. i want List<AnswerInfo> which contains the Text information pass to the controller. can anyone tell me how to do it?

View 4 Replies

C# - Pass Nested Lists From View To Controller Using Viewmodels?

Mar 24, 2011

I am Francesco and I am newbie. I have a problem with ASP.NET MVC3 regarding the data posted between View and Controller. My goal is to use a form to edit a specific record from my database and then post it back to the controller, which is in charge of checking the record's fields and submit them into the database.
The data are passed from the Controller to the View by using a ViewModel and therefore the DefaultDataBinding does not apply in this case. I tried many approaches, I monitored the communication with Fiddler but I couldn't solve my problem. The method described by Phil Haack does not work and neither does the FormCollection.

Here you have the code:

ViewModels: I pass it to the View to create a table. Name and the list of Item names (table columns headers) are just to be displayed. I want to have back the Id, the Month (they are passed correctly as parameters and represents table row headers) and most important the ActualValue of the Items and their Id (I have an association table in my database with Id, Itemid and Month as keys)

[Code]....

View: The View is strongly typed as ViewModels.EditViewModel and sends the fields through a submit button. I have to generate a table by using foreach loops, because I do not know how many items there are in advance

Controller: The controller has to update each kpi passed from the view related to a specific Id and Month.

[HttpPost]
public ActionResult EditMonth(int Id, int Month, //FormCollection kpiValues)

View 1 Replies

MVC :: Instantiate HtmlHelper Object In Controller Action?

Jun 10, 2010

Is it possible to instantiate an HtmlHelper object in a controller action in order to call HtmlHelper.EditorFor?

I would like to call HtmlHelper.EditorFor to return some partial html generated by an editor template in response to an ajax call. If I can do so I would not need to create an ascx file that otherwise would do the call to EditorFor.

View 2 Replies

MVC :: How To Pass Param In Htmlhelper

Mar 25, 2010

i have a very big problem: i've created a new test html helper:

[Code]....

i can call it but the first param that i need to pass is htmlHelper and not text as i should do. Why?

View 9 Replies

MVC :: NotSupportedException - Pass Database Data From Control To View Via ViewData

Feb 7, 2011

I'm trying to pass a list of data from the column CICodeID in my database where the currently logged in users name matches the UserId.

Here is my controller: [Code]....

And here is my view: [Code]....

This is the exception I'm getting at run time:"Cannot compare elements of type 'System.Linq.IQueryable`1'. Only primitive types (such as Int32, String, and Guid) and entity types are supported."

View 6 Replies

Data Controls :: Pass DataListItem Values From One View To Other In MultiView Control OnClick

May 7, 2015

I have a Datalist Which is Bind with Database..Datalist Displays Image And their Image Name.. Now i Want Details of Selected Image from Database in Next View (View 2).

Also Want to know which control should i use for click event on Image??ImageButton or <a Href="">?My Code is --

<asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0" >
<asp:View ID="View1" runat="server">
<asp:DataList ID="DataList1" runat="server" CellPadding="2" CellSpacing="2"
Font-Bold="False" Font-Italic="False" Font-Overline="False"
Font-Strikeout="False" Font-Underline="False" HorizontalAlign="Center"

[CODE]

View 1 Replies

MVC :: Differentiate View's Control And UserControl's Control In Controller?

Apr 15, 2010

I am new to MVC framework. I am having issue as follows,I am having "txtUsername" textbox inside my view (myView.aspx). The same control also avialble in my usercontrol(MyUserControl.ascx).In my view i am rendering this usercontrol as follows

<% = Html.Textbox("txtUsername")%>
<% Html.RenderPartialView("MyUserControl")%>

I am can able to access this both textbox in view and usercontrol in controller class as follows

ViewData["txtUsername"] = "Text from Controller";

Here how do i differentiate these controls. If i run the application both textbox from view and user control filled by the text"Text from Controller". I dont want to fill the text with view's textbox.

View 6 Replies

MVC :: Using HtmlHelper Outside Of A View?

Sep 20, 2010

How can I call HtmlHelper methods outside of a view? I want to call Html.ActionLink from a C# method. Then use Response.Write to write the output from ActionLink to the output stream of a view. Is there a server side equivalent of HtmlHelper.ActionLink?

View 1 Replies

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

C# - Get Model Associated With Corresponding View In HtmlHelper?

Nov 24, 2010

My View inherits Models.MyModel

<%@ Page Language="C#" MasterPageFile="Something.Master" Inherits="Models.MyModel>" %>

I need a property Model.Something to be available in a HtmlHelper method when I call it from this view.

<%= Html.CustomHelper(...) %>

Is there any way to access this? Maybe via ViewContext or ViewDataDictionary?

I do not want to explicitly pass Model.SessionKey for each helper I call.

View 2 Replies

C# -pass A Generic Type With The User Control?

Aug 19, 2010

In Asp.net Web forms why must a user control be partial? I tried to remove the partial keyword and it says: Missing partial modifier on declaration of type 'test'; another partial declaration of this type exists
Where is the other declaration?I am trying to pass a generic type with the user control how can I do that? I can't unless I change the other declaration too. I couldn't find it so I removed the partial keyword.Note:
you do have 3 files if your making WebApplication but if your making website you only get 2 files?
UserControl.ascx
UserControl.ascx.cs
so in website where is the other declaration?the reason i want generic is because im making a Grid User Control so i want to pass the type the datasource is going to have.

View 4 Replies

MVC :: 3 HtmlHelper.BeginForm - Return View?

Feb 11, 2011

I am having some trouble with returning a View in response to an ActionResult method being invoked. In my view I have a ViewData which holds a value which is being read. Current process.. user selects 1 of three radio buttons, and clicks a button to apply the selection, which in turn triggers method which sets the form ..

this.form =
this.htmlHelper.BeginForm("GridEditingMode",
"Classification")

Now in my controller, I change the value in the ViewData and simply which to return to the View();. Here is we're the fun starts.. I receive the following message, and cannot get around it. The view 'GridEditingMode' or its master was not found. The following locations were searched:

[Code]....

View 2 Replies

Pass Datatable To The Mvc View Error / CS0246: The Type Or Namespace Name 'DataTable' Could Not Be Found

Sep 28, 2010

I was reading: [URL]

But I have give a compilation error:

CS0246: The type or namespace name 'DataTable' could not be found (are you missing a using directive or an assembly reference?

View 1 Replies

How To Return Partial View From Inside The HtmlHelper

Feb 10, 2011

I have the following code:

public static PartialViewResult DateTime(this HtmlHelper helper)
{
return System.DateTime.Now.ToLongTimeString();
}

and now I want to return a Partial view from inside the DateTime method. But helper instance does not have any method for partial view.

View 2 Replies

MVC :: Can Extend The HtmlHelper Class From A View Page

Mar 26, 2010

I can extend the HtmlHelper class from a View page but how can I extend its functionality within a class?

[code]...

View 13 Replies







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