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 391585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T16:04:33+00:00 2026-05-12T16:04:33+00:00

I’m currently building the Admin back-end for a website in ASP.NET MVC. In an

  • 0

I’m currently building the Admin back-end for a website in ASP.NET MVC.

In an ASP.NET MVC application, I’ve started using the ‘EditorFor’ helper method like so:

<div id="content-edit" class="data-form">
    <p>
        <%= Html.LabelFor(c => c.Title) %>
        <%= Html.TextBoxFor(c => c.Title)%>
    </p>
    <p>
        <%= Html.LabelFor(c => c.Biography) %>
        <%= Html.EditorFor(c => c. Biography)%>
    </p>
</div>

In the model, the ‘Biography’ field has been decorated with: [UIHelper(“Html”)].

I have an ‘Html’ partial view (under Views/Shared/EditorTemplates):

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.XML.Linq.XElement>" %>

<textarea class="html">
    <%= Model.ToString() %>
</textarea>

Now I’d like to have the ‘ID’ attribute of the ‘textarea’ set to the name of the field, like this:

<textarea id="Biography" class="html">
    ...
</textarea>

But I can’t see a way to do that with the current set up.

All I can think of is creating an ‘Html’ ViewModel that contains a ‘Value’ property and a ‘ControlID’ property.

But if I based the view off that, rather than ‘System.XML.Linq.XElement’, it would no longer be compatible with the ‘EditorFor’ helper method and I’d have to do everything manually.

Has anyone had a similar problem yet?

  • 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-12T16:04:33+00:00Added an answer on May 12, 2026 at 4:04 pm

    You should be able to pull out the desired ID from the ViewData.TemplateInfo.HtmlFieldPrefix property of the view. Like this:

    <%@ Control Language="C#"
          Inherits="System.Web.Mvc.ViewUserControl<System.XML.Linq.XElement>" %>
    <textarea id="<%= ViewData.TemplateInfo.HtmlFieldPrefix %>" class="html">
        <%= Model.ToString() %>
    </textarea>
    

    To show why this works, here’s the place in TemplateHelpers.cs (of MVC2 Preview 1 source) where ViewData is initialized for the Editor template control:

    ViewDataDictionary viewData = new ViewDataDictionary(html.ViewDataContainer.ViewData) {
        Model = modelValue,
        TemplateInfo = new TemplateInfo {
            FormattedModelValue = formattedModelValue,
            ModelType = modelType,
            HtmlFieldPrefix = html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(expression),
            IsNullableValueType = (underlyingNullableType != null),
        }
    };
    

    In the call above, “expression” is initialized (further up the call stack) with the name of the property being edited.

    BTW, @Sperling below caught a detail I originally missed: if you’re using (or might use) a non-default HtmlHelper.IdAttributeDotReplacement, then you’ll want to replace the dots in the HtmlPrefix property with HtmlHelper.IdAttributeDotReplacement.

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

Sidebar

Related Questions

No related questions found

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.