Is there a web site that can verify your web pages. Specifically, let's say you created a web page on Monday and you want your users to be assured that when they view the same page on Tuesday, that it's the same page that was posted on Mondyy (without any modifications).
|
closed as off topic by phwd♦ Jan 31 at 22:03
Questions on Web Applications Stack Exchange are expected to relate to web applications within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
There are services which can notify you of updates to website changes. Google had such a service in Google Reader, but they recently (in the last month) removed the facility. A quick search for "monitor website changes" bought up the following. I don't know how good they are or if they'll do what you want. http://www.changedetection.com/ In response to what I think you're asking for - The easiest way to make users feel comfortable that a webpage hasn't changed would be to provide a "last changed" date on the webpage and an option to view prior changes. Most Wikis provide this functionality, and some of these can be configured to only allow known users (e.g. you) to change pages. |
|||
|
|
|
This sounds like a report type setup rather than a pure web page. You need to pass a date (or similar) on the query string, and return the data (page) associated with that date. This can be done purely as a web page, or you could set up a reporting solution that does it - the advantage of the reporting solution is that it should have multiple formats that it can export the page to (like Excel or PDF). You also don't need another website to test and validate your pages - that sort of testing can be very easily done by humans or by the testing tools built into products like Visual Studio. |
|||
|
|