Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>First of all I think u should remove the hiddenfields and anything related to it (javascript functions). Focus on what is causing the problem not the solution, the problem is that the textbox values are not posted back to the server. When you eventually get it to work with the hidden field the problem might still exist. Although you already found out that hidden fields have the same problems as the original textboxes.</p> <p>Isolating the problem:</p> <p>1) Are the values actually posted to the server? (you can verify this with browser build in developer tools or a plugin like HttpWatch, in the worst case you can use a sniffer)</p> <p>2) Make sure the updatepanels aren't interfering by turning off the ajax/updatepanel functionality. (you can do this by setting EnablePartialRendering to false on your ScriptManager, which is usually located on the masterpage). Although this shouldn't matter.</p> <p>3) When you have verified that the correct values are actually posted to the server, make sure there is no strange logic in the Page_Load (or similar function) that overwrites the postback values which are processed right before OnLoad. This might be some initialization which should only run when it is not a post-back.</p> <p>4) Make sure that the controls exist when the post-back variables are processed, otherwise the post-back values are ignored. You noticed that the code is in a "CSS popup" make sure that this popup exists (in the controls collection) when the post-back variables are processed.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload