I have been told by the people that will be handling the servers that they will not work with Access.
This information sounds somewhat erroneous. The server will only need to be able to support ODBC connections to MS Access, something that is inherent in all Microsoft servers. The server does not need any special configuration, nor does it need to have MS Access installed.
None the less, if they do not want you to put a MS Access database on their server, SQL is the next step up. Using the MS Access Upsizing Tool, you can either migrate your existing MS Access database to a SQL server or create a new SQL database.
Once the database has been created on the SQL server, the hard part is over. Creating an ASP page is actually pretty simple to do with a little VB knowledge and a little HTML knowledge. One of the best resources available is
W3 Schools. They have tutorials on just about every type of
language.
Unless you have calculations which the form will need to do, the creation is as simple as:
[ol A]
[li]Creating a connection to the SQL Server.[/li]
[li]Retrieving the record set you want to display or update.[/li]
[li]Displaying your data or providing a form to input/update your data.[/li]
[/ol]
Whether you choose to use ASP.NET or ASP and VB.NET or VB, the process becomes amazingly simple once you get the hang of it, so don’t be discouraged.
-Brian-
I'm not an actor, but I play one on TV.