22
Jan/09
0

asp.net formview problem updating data

Very strange behavior with formviews on asp.net.  For some reason, if I declare the SqlDataSource on the page source but then do the binding of the SqlDataSource to the formview in code behind, no error are shown but the data does NOT get updated on edit.

So instead of doing this in code behind

summary.DataSourceID = "summaryDS";
summary.DataBind();

I need to do this on the page

<asp :FormView ID="summary"
runat="server"
DataSourceID="summaryDS">

A previous problem I encountered with formview

14
Jan/09
0

Develop and Debug – Android On A G1

Develop and Debug – Android.

This is a great way to debug your Android app on a G1 or any Android driven device via USB.  It is a much better way to go than the emulator if you have the resources.

Filed under: Coding, android