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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T11:12:48+00:00 2026-05-18T11:12:48+00:00

When using a form like this: <h2> <%:Model.EulaTitle %> </h2> <p> <%=Model.EulaHtml %> </p>

  • 0

When using a form like this:

<h2>
<%:Model.EulaTitle %>
</h2>
<p>
<%=Model.EulaHtml %>
</p>
<a name="errors"></a>
<%:Html.ValidationSummary()%>


<div style="text-align:center;">
<% using (Html.BeginForm())
   { %>

<%:Html.HiddenFor(model => model.SourceUrl)%>
<%:Html.HiddenFor(model => model.EulaId)%>


<a name="accept"></a>
<div style="text-align:center;">
<%:Html.CheckBoxFor(model => model.Accepted)%>
<%:Html.LabelFor(model => model.Accepted)%>
</div>
<input type="submit" value="Submit">
<% } %>
</div>

I need the page to scroll to #errors when it posts. The Model.EulaHtml contains some length EULA text and I’d prefer that the user not have to manually scroll down to see an error message if they post the page without accepting the agreement.

If the controller detects ModelState.IsValid on Post, it redirects to another page. If not, I need to stay on this page, but scroll to the #errors bookmark anchor tag.

I’ve thought about just adding ‘#errors’ to the end of the url in the form action, but I receive errors along the line of a potentially dangerous .... ('%'). It’s possible that I’m incorrectly encoding the hash mark. Anyone else had to deal with this? We’re dealing with pretty restrictive requirements for browser compatibility (IE6+ and everything else under the sun) so I try to avoid using JavaScript whenever possible.

Update

The error I’m receiving is:

A potentially dangerous Request.Path value was detected from the client (%).

I modifed the Html.BeginForm() call to

<% using (Html.BeginForm(new { @action="#errors" }))
   { %>

And the resulting URL is:

http://..../TheControllerName/Eula/%2523errors/

I also noticed that a few queryString parameters that were being passed through disappear when I set the action attribute in this way. (Not surprising, but no fix for that is immediately obvious to me)

  • 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-18T11:12:49+00:00Added an answer on May 18, 2026 at 11:12 am

    Try like this:

    <form action="<%: Url.Action("actionName", "controllerName") %>#errors" method="post">
    
        <%:Html.HiddenFor(model => model.SourceUrl)%>
        <%:Html.HiddenFor(model => model.EulaId)%>
    
    
        <a name="accept"></a>
        <div style="text-align:center;">
        <%:Html.CheckBoxFor(model => model.Accepted)%>
        <%:Html.LabelFor(model => model.Accepted)%>
        </div>
        <input type="submit" value="Submit">
    
    </form>
    

    You could also write a custom HTML helper that will do the job:

    public static class FormExtensions
    {
        public static MvcForm MyBeginForm(this HtmlHelper htmlHelper, string actionName, string controllerName, string fragment)
        {
            var formAction = UrlHelper.GenerateUrl(null, actionName, controllerName, htmlHelper.ViewContext.HttpContext.Request.Url.Scheme, null, fragment, null, htmlHelper.RouteCollection, htmlHelper.ViewContext.RequestContext, true);
            var builder = new TagBuilder("form");
            builder.MergeAttribute("action", formAction);
            builder.MergeAttribute("method", "post", true);
            htmlHelper.ViewContext.Writer.Write(builder.ToString(TagRenderMode.StartTag));
            return new MvcForm(htmlHelper.ViewContext);
        }
    }
    

    And then:

    <% using (Html.MyBeginForm("index", "home", "errors")) { %>
        ...
    <% }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Zend_Form, how would I create form elements like this: <input type=text name=element[1] value=
I have a simple form with some plain html input like bellow using ASP.NET
I'm using jQuery in conjunction with the form plugin and I'd like to intercept
I'm using form_remote_for() to do validation on a form's data so that my rails
if Form.Release is called after using the form, it will free all related memory
When I am using a form containing <input id=myFile type=file runat=server /> to upload
Background I'm using POST form submissions instead of links with concatenated arguments inside a
I'm using Zend_Form to output a set group of checkboxes: <label style=white-space: nowrap;><input type=checkbox
I'm creating a form using the Content Construction Kit (CCK) in Drupal5. I've added
Say you create a form using ASP.NET MVC that has a dynamic number of

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.