contactos_webform_asp_vb
1.0.0
This VB.NET web application allows contact management, offering functionalities to add, edit, delete and view contacts, as well as export them to XML format.
.mdf
database integrated into the project is used, managed by Visual Studio. Here you can see the structure of the Contactos
table used in the application:
Inicio.aspx
– Home page displaying the contact list and options to add a new contact or export the list to XML.AgregarContacto.aspx
: Page to add a new contact to the database.EditarContacto.aspx
: Page to edit the information of an existing contact.App_Code/
: Contains the business logic and data access classes.ConexionBD.vb
: Manages the connection to the database.ContactoDAL.vb
: Data access layer for contacts.ContactoDTO.vb
: Data Transfer Object for a contact.ContactoXMLManager.vb
: Class to handle the export of contacts to XML.App_Data/
: Contains the Database.mdf
database.Controls/
: Contains reusable user controls for the header and footer. Contactos
table should now be configured and ready to use within the project.