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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T10:06:46+00:00 2026-05-11T10:06:46+00:00

I have an html page that I am converting over to an asp .net

  • 0

I have an html page that I am converting over to an asp .net page. This page contained a form that accesses an external website that I have no control over. There is some sample code below:

<asp:Content ID='sample' ContentPlaceHolderID='body' Runat='Server'> <form name='Subscribe' method='post' action='http://anexternalwebsitehere.com/subscribe.asp'>         <input type='text' name='email' size='45' maxlength='120' />         <input type='submit' name='submit' value='Subscribe' />     </form> </asp:Content> 

The form is more complicated than the example I have provided, but it gives a rough idea of what i need to convert over. Here are the problems I have encountered.

If I leave it as is: When you click on the submit button you have a postback to the current page and not to the external page

If simply convert everything over to be asp form controls and change the postback url: The id’s become some convoluted ‘ctl00_body_ctl00’ which the external page is not able to interpret.

Note: I do need the page to be an aspx page because I am using a master page for other content on the page.

Additional note: this is not Microsoft MVC.

What am I missing?

  • 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. 2026-05-11T10:06:46+00:00Added an answer on May 11, 2026 at 10:06 am

    The issue was with nested forms as others have mentioned.

    I was able to fix all my issues by simply doing the following:

    1. Remove the extra form element i was adding.
    2. Leave all controls as simply html controls, except for the submit button.
    3. Replace the submit button with an asp .net button, and set the postback url.

    The old code is as follows:

    <asp:Content ID='sample' ContentPlaceHolderID='body' Runat='Server'> <form name='Subscribe' method='post' action='http://anexternalwebsitehere.com/subscribe.asp'>         <input type='text' name='email' size='45' maxlength='120' />         <input type='submit' name='submit' value='Subscribe' />     </form> </asp:Content> 

    The new code:

    <asp:Content ID='sample' ContentPlaceHolderID='body' Runat='Server'>         <input type='text' name='email' size='45' maxlength='120' />         <input type='submit' name='submit' value='Subscribe' />         <asp:button postbackurl='http://anexternalwebsitehere.com/subscribe.asp' text='Subscribe' runat='server' /> </asp:Content> 

    This fixes any of the issues with invalid nested forms as there are none. It also addresses the issue of asp .net renaming the asp elements because the only control that is being renamed is the asp button control which was not necessary for the submission to succeed.

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

Sidebar

Related Questions

I am converting an old html based website to ASP.NET, so that we can
I have a form on an HTML page with multiple submit buttons that perform
This one is weird, I have a page that consists of a html table
I'm converting a classic ASP page to ASP.NET MVC 2. I have a simple
I have a HTML page that I want to display in a WebBrowser control,
i have to create one asp.net mvc page that will show template of controls.
I have a HTML page that scrolls up and down (not a lot, but
I have a page that is generated which inserts an HTML comment near the
Here's the problem: 1.) We have page here... www.blah.com/mypage.html 2.) That page requests a
I have CSS and HTML that I will be converting into PDF. I want

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.