Hello,

Thank you for downloading the code for this tutorial. We hope it becomes very useful for you.

This is a sample code to show the added functionalities of the checkboxes and image buttons. The code uses
an Access 2003 database called GridViewExample.mdb that is contained in the RAR file.

In order for this tutorial to work, you need to open the Web.Config file and modify the following line of code
(especifically the "Source" property) to point to the path you will be placing the access database in:

<add key="Main.ConnectionString" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Almaxsoft\GridViewExample.mdb;User Id=;Password=;Jet OLEDB:System Database=;Jet OLEDB:Database password="/>

It would end up looking like this:

<add key="Main.ConnectionString" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\YourPath\GridViewExample.mdb;User Id=;Password=;Jet OLEDB:System Database=;Jet OLEDB:Database password="/>

NOTHING ELSE but the Source property needs to be modified. Otherwise, the code could not work properly.



IMPORTANT

This code runs using Visual Studio 2005 or Web Developer Express with .Net Framework 2.0.

HOW TO USE IT

- Extract the content of the RAR file.
- Open Visual Studio 2005 or Web Developer and select Open -> Website.
- Select the GridViewExample folder you extracted from the RAR file.
- Modify the Web.Config file with the instructions specified above.
- Run the project with F5 key.