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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T16:32:34+00:00 2026-05-15T16:32:34+00:00

We’ve just brought up a new ASP.NET page that is showing a strange error.

  • 0

We’ve just brought up a new ASP.NET page that is showing a strange error.
The error shows up in the next page as if the data isn’t in the form.
When the user goes back and refreshes the page and resubmits the form it works just fine.
A little background, this source is being served up from a virtual directory for 8 web servers with a load balancer and IIS-6.
The version of VB.NET is 2005. The problem appears to be browser independent (It happens on both IE & Firefox).
The form objects are pure HTML because they are entirely dynamically generated and formatted based on the answers from the previous pages and this is a conversion from ASP.

A stub of the form with the failing objects is as follows:

<FORM ACTION="NextPage.aspx" METHOD="post" ID="frmAddComments" NAME="frmAddComments">
    <SELECT NAME="SubReason1" ID="SubReason1">
        <OPTION VALUE="">Select A Reason For This Return</OPTION>
        <OPTION VALUE="BP11">Arrived Defective</OPTION>
        <OPTION VALUE="BP12">Not Compatible</OPTION>
        <OPTION VALUE="BP13">Stopped Working</OPTION>
    </SELECT>
    <TEXTAREA NAME="comment1" ID="comment1" ROWS="3" COLS="45"></TEXTAREA>
    <SELECT NAME="SubReason2" ID="SubReason2">
        <OPTION VALUE="">Select A Reason For This Return</OPTION>
        <OPTION VALUE="BP11">Arrived Defective</OPTION>
        <OPTION VALUE="BP12">Not Compatible</OPTION>
        <OPTION VALUE="BP13">Stopped Working</OPTION>
    </SELECT>
    <TEXTAREA NAME="comment2" ID="comment2" ROWS="3" COLS="45"></TEXTAREA>
    <INPUT TYPE="submit" VALUE="Continue">
</FORM>

I’m primarily looking for which questions to ask.

Edit
Questions got me thinking – There are several encrypted items in the form which are received and validate correctly. This is the reason that they are not in the stub. Any failure would be redirected to a failure page and that is not happening. Only the unencrypted data is blank.

Edit The encryption is a mix of RC4, MD5 and DES-3 – with all encrypted fields displayed as hex, both name/id and value. Any failure in matching encryption / decryption will result in the page displaying an error. That is not happening.

Edit
This page also shows a problem with ViewState. It is now turned off.

Edit
A transaction dump shows that the failures are not changing servers. I show only one entry with a change of servers.

  • 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-15T16:32:35+00:00Added an answer on May 15, 2026 at 4:32 pm

    I had a similar problem that took a few days to figure out. I was porting an application from ColdFusion to .NET 3.5 and the page seemed to post back, but most of the request was lost.

    The problem was with having a form element which wasn’t marked with a runat="server" tag being nested within the form tag marked with a runat="server".

    My resolution was simple: I removed the html-based form element and relied on the main form. Your issue sounds slightly different because you’re dynamically building the form. From my research during that time, I learned that form elements shouldn’t be nested and that only one per page can be server-side.

    MSDN Magazine has an article with several options for displaying multiple forms on a single page:
    http://msdn.microsoft.com/en-us/magazine/cc164151.aspx#S4

    However, if your generated forms are fairly simple as you’ve posted, you may consider generating the controls and using an asp:Button control’s PostbackUrl property to set the page to which a postback should be submitted.

    An example, taken from MSDN:

      <form id="form1" runat="server">
    
        <h3>Button.PostBackUrl Example</h3>
    
        Enter a value to post:
        <asp:textbox id="TextBox1" 
          runat="Server">
        </asp:textbox>
    
        <br /><br />
    
        <asp:button id="Button1" 
          text="Post back to this page"
          runat="Server">
        </asp:button>
    
        <br /><br />
    
        <asp:button id="Button2"
          text="Post value to another page" 
          postbackurl="Button.PostBackUrlPage2cs.aspx" 
          runat="Server">
        </asp:button>
    
      </form>
    

    Notice how clicking the first button posts back to the current page, and clicking the second button posts back to Button.PostBackUrlPage2cs.aspx and contains the value entered in the textbox in the Request object.

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

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have just tried to save a simple *.rtf file with some websites and
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Basically, what I'm trying to create is a page of div tags, each has
I've got a string that has curly quotes in it. I'd like to replace
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I want use html5's new tag to play a wav file (currently only supported
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a

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.