ASP.Net Form Databound problems - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T06:01:03Z http://stackoverflow.com/feeds/question/326194 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/326194/asp-net-form-databound-problems 0 ASP.Net Form Databound problems Jason Bitman 2008-11-28T16:43:40Z 2009-05-29T03:10:02Z <p>I know there is a similar problem on this forum, but the solutions did not really work for me. I am populating form controls with fields from a few different data sources, and the data shows up great.</p> <p>I have an ImageButton controlwhich has an OnClick Event set to grab all of the data from the form. Unfortunately, when I click the button, it seems as though the page is reloading first, and THEN is executes the OnClick call. The data that was hand-entered, or hard-coded seems to be pulled fine from the controls it was entered in, but anything that was pulled from a datasource is not able to be read. Any ideas. this is the last hurdle in a project that I have been working on for 6 months. I want to go home...</p> <p>Thank you so much in advance.</p> <p>Jason</p> http://stackoverflow.com/questions/326194/asp-net-form-databound-problems/326216#326216 0 Answer by Cptcecil for ASP.Net Form Databound problems Cptcecil 2008-11-28T16:55:29Z 2008-11-28T16:55:29Z <p>Are you talking about drop downs or gridviews? When are you binding data, on page load?</p> <p>Good design will have you bind your data upon page load but only in </p> <pre><code>if(!isPostBack){ dropdown.databind() gridview.databind() }. </code></pre> <p>Otherwise it will rebind every page load. If its not reloading you can get selected values from those controls if thats what your looking for.</p> <p>An alternative is to set your data source and databind in your aspx page with a datasource object. That automates the above automatically.</p> http://stackoverflow.com/questions/326194/asp-net-form-databound-problems/326244#326244 0 Answer by Jason Bitman for ASP.Net Form Databound problems Jason Bitman 2008-11-28T17:15:10Z 2008-11-28T17:15:10Z <p>Actually, it is hiddenfields, dropdowns, labels, and textfields. I just tried doing the binding in the init, and the load, but no dice. When I tried binding it on !isPostBack only, none of the fields showed up. </p> <p>I think one of the main problems is that the dataset I am getting is from a method call to an API. I receive the data fine, but it comes in programmatically, then I have to do all of the control-setting programmatically as well. Would you like to see the code for ideas? Thank you for helping, no one is working today!</p> <p>Jason </p> http://stackoverflow.com/questions/326194/asp-net-form-databound-problems/924234#924234 0 Answer by Chuck for ASP.Net Form Databound problems Chuck 2009-05-29T03:10:02Z 2009-05-29T03:10:02Z <p>Have you enabled viewstate on your controls? Posting code samples would go a long way to helping solve your issue.</p>