Why doesn't ASP:Button work when I have a datatable and five dropdown lists bound to...

  • Thread starter Thread starter sweetcheeks
  • Start date Start date
S

sweetcheeks

Guest
...that table? I'm using Visual Studio 2008 and ASP 2.0.

I also have a datatable that is made on Page_Load and is used as the datasource for 5 dropdownlists I have on my page.

However, now the button I have to submit the data doesn't work. If I take out the datatable and dropdownlist binding, the button works, and executes the onClick event I have.

Any idea why?
 
what ever code you have in page_load event put inside this block

if Page.IsPageLoad = false then

... your page_load code here.....

end if
 
Back
Top