Our company recently inherited a website, consisting of a live website with just the compiled code on the server, and the aspx, config files etc, but no .vb files etc. We were also given separately what we think is the current source code for the site to run in Visual Studio.
Due to circumstances we are unsure if the version of the source code is the same as the compiled live site - Ive been tasked with finding out. The site is very complicated and frankly badly documented so it would be hard for me to test page by page the functionality and layout of the pages and time-consuming to ensure both do the same.
I'm wondering if anyone has a methodology for finding out if the two are the same - ie a compiled version of the source code would be the same as the live site. Basically so far Ive done a comparison of the aspx, config etc pages from the live site (ie non-compiled stuff) and source files and they seem match, but I wonder if there's a good way of determining if the compiled files (dlls exes etc) match - ie that the .vb and other files that exist compile to the same dlls etc as the live site already has. Checking file length is the same occurred to me on the dlls etc seemed to me a way of doing comparisons, but someone told me these might not necessarily match due to patches and updates in Microsoft Visual studio etc, so I dont know if that would be ok I seem to remember in my early days of programming running checksums on compiled files and wonder if there is something I can do like this to compare.
The budget, to do this testing, is as usual, practically zero so I can't buy fancy software to do this.
thanks in advance
Due to circumstances we are unsure if the version of the source code is the same as the compiled live site - Ive been tasked with finding out. The site is very complicated and frankly badly documented so it would be hard for me to test page by page the functionality and layout of the pages and time-consuming to ensure both do the same.
I'm wondering if anyone has a methodology for finding out if the two are the same - ie a compiled version of the source code would be the same as the live site. Basically so far Ive done a comparison of the aspx, config etc pages from the live site (ie non-compiled stuff) and source files and they seem match, but I wonder if there's a good way of determining if the compiled files (dlls exes etc) match - ie that the .vb and other files that exist compile to the same dlls etc as the live site already has. Checking file length is the same occurred to me on the dlls etc seemed to me a way of doing comparisons, but someone told me these might not necessarily match due to patches and updates in Microsoft Visual studio etc, so I dont know if that would be ok I seem to remember in my early days of programming running checksums on compiled files and wonder if there is something I can do like this to compare.
The budget, to do this testing, is as usual, practically zero so I can't buy fancy software to do this.
thanks in advance