Asked by:
Replacing my FP website with VS

Question
-
User958644994 posted
Hi: I have an existing FrontPage 2000 website that needs to be re-created and replaced using VS. I would like to discuss what I need and verify that I am on the right path with regards to asp.net.
The currently hosted FP site incorporates both publicly accessed .asp forms connected to an older Access 2000 database (created in the FrontPage Wizard) that are viewed only, as well as back-end, privately-accessed forms that are used to update database records, etc.
To replace the whole system, I re-created and hosted my main website in Expressionweb. However, it was suggested at that time that I use some form of VB or VS to replace the database related "stuff" I had built in FP itself.
I then decided to copy all forms and the Access 2000 that were incorporated in the original FP website and built another temporary, "administrative" FP website (different domain altogether) which is currently being hosted successfully. I then changed my main public website over to WordPress, within which are some links that go to the "view-only" forms contained in the administative FP site. However, both sites are (and will remain) completely independent from one another).
It has been suggested that I download VS Community as well as SQL Server Express (into which I will migrate the existing Access2000 database.) I have downloaded both, but have not yet installed them pending some confirmation that this will be the correct way to go.
I understand that, by using VS Express I will be able to create asp.net forms (instead of what are now .asp forms in FP). If this is the correct route to take, I will build this as a separate domain and hosting service to test and get it right, while maintaining the FP site so that the back-end administrative portion of my business will not be interrupted.
One of the immediate limitations of my FP-based database entry and update system is that Access 2000 was/is limited to 250 fields max per table, and FP has it's own limitation with a max number of fields that it can take per .asp page. Both my tables and queries have started to exceed those limitations. I never attempted to upgrade to a newer version of Access for the FP site.
1- Can I assume that this will not be an issue with the SQL Server Express database once I have migrated everything over?
2- Should I do the migration first before installing VS Community? If so, can I get guidance from this forum as to how to do that?
3- I have been advised that once I have created the structure of the SQL express database on my computer, and it is uploaded to the server, that I cannot make any structural changes unless I do them online. Will I not be able to first close off any new entries on the online database, then download the data to my computer (for backup as well), then make structural changes to the sql database on my computer, then upload and overwrite the whole "shibang" and then "re-open myself up for business" once that is accomplished?
Sincerely,
Ron
gcqjiSunday, January 21, 2018 3:05 PM
All replies
-
User475983607 posted
One of the immediate limitations of my FP-based database entry and update system is that Access 2000 was/is limited to 250 fields max per table, and FP has it's own limitation with a max number of fields that it can take per .asp page. Both my tables and queries have started to exceed those limitations. I never attempted to upgrade to a newer version of Access for the FP site.
1- Can I assume that this will not be an issue with the SQL Server Express database once I have migrated everything over?1024 columns per table according to the SQL docs.
https://docs.microsoft.com/en-us/sql/sql-server/maximum-capacity-specifications-for-sql-server
2- Should I do the migration first before installing VS Community? If so, can I get guidance from this forum as to how to do that?VS Community is an editor, like FP, for writing .NET based applications. Install VS Community when you are ready to start writing .NET code.
3- I have been advised that once I have created the structure of the SQL express database on my computer, and it is uploaded to the server, that I cannot make any structural changes unless I do them online. Will I not be able to first close off any new entries on the online database, then download the data to my computer (for backup as well), then make structural changes to the sql database on my computer, then upload and overwrite the whole "shibang" and then "re-open myself up for business" once that is accomplished?You can make whatever change to a DB at any time for any reason. There's no limitation. Generally, you don't do a backup and restore to production. Rather you write scripts or code to make data and schema updates.
However, having a table with 250 column suggests that the design is not properly normalized. The design actually dictates how well the application responds to changes to the DB schema.
Sunday, January 21, 2018 3:37 PM -
User958644994 posted
2- Should I do the migration of my Access database into the sql server express database first, before installing VS Community, or will it matter?
Monday, January 22, 2018 12:01 AM -
User409696431 posted
" Should I do the migration of my Access database into the sql server express database first, before installing VS Community, or will it matter?"
It doesn't matter. Installing VS has no impact on your database.
Monday, January 22, 2018 11:53 PM -
User-707554951 posted
Hi gcqji
2- Should I do the migration of my Access database into the sql server express database first, before installing VS Community, or will it matter?It is no need to migration of your Access database into the sql server express database because we could connect to access database.
For this, you could refer to the following links:
https://www.youtube.com/watch?v=xr3Th72tVzA
https://forums.asp.net/t/1862976.aspx?Connection+String+for+MS+Access+database
https://msdn.microsoft.com/en-us/library/ms247233(v=vs.100).aspx
Best regards
Cathy
Tuesday, January 23, 2018 9:35 AM