|
 This step of the VIDEO TUTORIAL will demonstrate on how to examine the various events associated with data web controls such as GridView, FormView and DetailsView controls. Especially, we will be focusing on the events associated with Update Product method and also on how to create a new Update method that takes only a sub set of the product information as parameters and update the product information in the underlying database table. In addition, a demonstration of how to format the UnitPrice field is also explored in this step. This step is demonstrated by adding various controls to the DataModificationEvents.aspx web page of EditInsertDelete folder of our Data Tutorials project. For detailed information and source code for this step, please refer to the original article.
View Video...
|
|
 This step of the VIDEO TUTORIAL will show case on how to implement a business rule during the updating process using a GridView control on the web page. In this case, the business rule states that the UnitPrice field can NOT be null in the underlying database table. Therefore, in order to enforce this business rule during the update process, the user must be alerted with a friendly error or alert message indicating the business rule. This alerting of an end user is accomplished by inspecting the UnitPrice value in the GridView’s RowUpdating event handler and alerting the end user by making the warning message to be visible. In addition, the update process is also cancelled by setting the GridViewUpdateEventArgs’s Cancel attribute to false. For detailed information and source code for this step, please refer to the original article.
View Video...
|
|
 This VIDEO TUTORIAL will demonstrate on how to add a new interface using DetailsView data web control to add new products to the underlying database table. A DetailsView control is added to DataModificationEvents.aspx web page of our project. For detailed information and source code for this step, please refer to the original article.
View Video...
|
|
|