Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3948688
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:24:17+00:00 2026-05-20T01:24:17+00:00

I’m on a asp.net MVC 2 project and have a view that inherits from

  • 0

I’m on a asp.net MVC 2 project and have a view that inherits from System.Web.Mvc.ViewPage<dynamic>. I would like to do something like below:

public ActionResult Index()
{
    dynamic model = new {Value1= string.Empty, Value2= string.Empty};
    return View(model);
}

[HttpPost]
public ActionResult Index(dynamic model)
{
    var value1 = model.Value1;
    var value2 = model.Value2;
    // do something here.
}

For my view, I currently have the below:

<% using(Html.BeginForm("Index", "Test"))
   {
%>
    <div>
        <label for="Value1">Value1:</label>
        <%=Html.TextBox("Value1", Model.Value1 as string) %>

    </div>
    <div>
        <label for="Value2">Value2:</label>
        <%=Html.Password("Value2", Model.Value2 as string) %>
    </div>
    <div>
        <input type="submit" value="Submit" />
    </div>
<% } %>

The above code yields an error of “‘object does not contain a definition of ‘Value1′” and highlights the Html.TextBox line for Value1.

I have attempted to just write my own html form and input tags (making sure to include both name and id attributes) and setting the value to Model.Value1 and Model.Value2. This works to render the page (and test values); however, upon submission I get the same error as before.

Is it possible to use anonymous and/or dynamic types for my ViewModels in ASP.Net MVC2 or am I forced to write a ton of DTOs which I’m hoping to avoid.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T01:24:17+00:00Added an answer on May 20, 2026 at 1:24 am

    Yes, it’s possible, if you declare your view as having a dynamic model:

    <%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
    

    That said, if you use MVC 2’s default templates (Html.EditorForModel()) you don’t even have to do that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;
I have a view passing on information from a database: def serve_article(request, id): served_article
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have a text area in my form which accepts all possible characters from
I would like my Web page http://www.gmarks.org/math_in_e-mail.txt on my Apache 2.2.14 server to display
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
I have a bunch of posts stored in text files formatted in yaml/textile (from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.