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

  • Home
  • SEARCH
  • 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 8424133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T03:54:24+00:00 2026-06-10T03:54:24+00:00

I’m using PartialViews to store the HTML for a tooltip in my ASP.NET MVC

  • 0

I’m using PartialViews to store the HTML for a tooltip in my ASP.NET MVC application. My initial thought was that Razor would automatically attribute encode anything sat between quotes in my HTML. Unfortunately this doesn’t appear to be the case and so my workaround for now is to use single quotation marks to encapsulate my PartialViews HTML. As below:

<div class="tooltip" title='@Html.Partial("_MyTooltipInAPartial")'>Some content</div>

This works just dandy but obviously I have problems if there are any single quotation marks within my PartialView.

Does anyone know the proper approach to resolve this? The closest I’ve got is the below:

<div class="tooltip" title="@HttpUtility.HtmlAttributeEncode(Html.Partial("_MyTooltipInAPartial"))">Some content</div>

Unfortunately this doesn’t quite work because the output of a Partial is an MvcHtmlString rather than a straight string.

Anyone got a better idea?

  • 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-06-10T03:54:25+00:00Added an answer on June 10, 2026 at 3:54 am

    Thanks to nemesv for the suggestion – it didn’t pan out. After a little pondering I ended up scratching my own itch by writing an HTML helper method called PartialAttributeEncoded.

    For anyone interested, here’s how you use the helper:

    <div class="tooltip" title="@Html.PartialAttributeEncoded("_MyTooltipInAPartial")">Some content</div>
    

    And here’s the helper:

    using System.Web;
    using System.Web.Mvc;
    using System.Web.Mvc.Html;
    
    namespace My.Helpers
    {
        /// <summary>
        /// MVC HtmlHelper extension methods - html element extensions
        /// </summary>
        public static class PartialExtensions
        {
            /// <summary>
            /// Allows a partial to be rendered within quotation marks.
            /// I use this with jQuery tooltips where we store the tooltip HMTL within a partial.
            /// See example usage below:
            /// <div class="tooltip" title="@Html.PartialAttributeEncoded("_MyTooltipInAPartial")">Some content</div>
            /// </summary>
            /// <param name="helper"></param>
            /// <param name="partialViewName"></param>
            /// <param name="model"></param>
            /// <returns></returns>
            public static MvcHtmlString PartialAttributeEncoded(
              this HtmlHelper helper,
              string partialViewName,
              object model = null
            )
            {
                //Create partial using the relevant overload (only implemented ones I used)
                var partialString = (model == null)
                    ? helper.Partial(partialViewName)
                    : helper.Partial(partialViewName, model);
    
                //Attribute encode the partial string - note that we have to .ToString() this to get back from an MvcHtmlString
                var partialStringAttributeEncoded = HttpUtility.HtmlAttributeEncode(partialString.ToString());
    
                //Turn this back into an MvcHtmlString
                var partialMvcStringAttributeEncoded = MvcHtmlString.Create(partialStringAttributeEncoded);
    
                return partialMvcStringAttributeEncoded;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;
I have thousands of HTML files to process using Groovy/Java and I need to
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
I would like to count the length of a string with PHP. The string
I am reading a book about Javascript and jQuery and using one of the
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function

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.