You will need to set OldValuesParameterFormatString proterty to "original_{0}" for the asp:SqlDataSource control.
The new code would be
<asp:SqlDataSource ID="sdsAuthors" Runat="server"
OldValuesParameterFormatString = "original_{0}"
ProviderName = "System.Data.SqlClient"
SelectCommand = "SELECT au_id, au_lname, au_fname, phone,
address, city, state, zip FROM authors"
UpdateCommand = "UPDATE authors SET au_lname = @au_lname,
au_fname = @au_fname, phone = @phone, address = @address,
city = @city, state = @state, zip = @zip
WHERE au_id = @original_au_id" >
|