I have a 2 column table that contains FK to other tables in my app. The 2 columns together form the PK for the table. I want to be able to update these values using a Detailsview, but can't get the update to work, the record does not update. I tried adding additional parameters to the Update Parameters of the SqlDataSource, then setting those params programatically , but still does not work.
Change datagrid font color oncheckedchange no postback
I have a datagrid with a checkbox in the first column and two columns following containing text. When the checkbox is checked, I need to have the font color changed. I can get this to work fine using oncheckedchange d and turning on the autopostback, my question is can I do this in javascript so I don't have to use the autopostback. I played around with passing the checkbox control (eg. oncheckedchange d(this) ), but cannot figure out how to determine...