GuidesASP Developing for Academic and Business Processes Page 7

ASP Developing for Academic and Business Processes Page 7

ServerWatch content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.




T.Mallard

So, the loop for paging is done, all the pages are written now (an example page in the image at right), so the next step is closing code to take care of letting me know what happened, so this is just a total page saved to a file as a log, really, but is output in html.

A General Index Page of Output HTML.


totlines = totlines + (series * 80) + paging

totpages = series + 1
htmlOut = “D:Websharewwwrootaspcsfacsfa_totals.html”
set output = conn1.opentextfile(htmlOut, 8, True)
output.writeline(“”)
output.writeline()
output.writeline()
output.writeline()
output.writeline(Current Research in the Pleistocene – Volume 3, 1986)
output.writeline()
output.writeline()
output.writeline()
output.writeline(Current Research in the Pleistocene Volume 3, 1986
)
output.writeline(Records Processed: & totlines &
)
output.writeline(Pages Processed: & totpages &
)
output.writeline(Date: & now() & Seattle, WA
)
output.writeline(Dynamic Content Resources by
Mallard Design Company
)
output.writeline()
output.writeline()
output.close
set rsInput = nothing
%>

The Code Rearranged for Authors.
This coding is then modified for creating the author index by changing output and field names, with separately developed pages for bibliography. The content itself is plain html with few images, as content is added the tables are updated and subsequent builds will have the new information linked in. If the content had been already in electronic format, the project would be finished in five days for the amount of work. The editing is almost as slow as manual entry, so it’s the bottleneck on this particular job.

Of course this is just the publishing end of the process, yet by establishing the databases with the information, future content manipulation is easy. Editing field separators into lists so they can be imported into spreadsheets and databases as fields is a key issue for this type of work, parsing fields with software is not as reliable as a human operator in this case, too many variables in the content, so using that expensive time to establish the data structure is as important as its’ quality. Since quality is very important to academic content, this system really helps to organize and validate the data as it gets processed and yet is pretty easy to develop.

The next page has the entire code, the displayed code was tested was copied and pasted into a text editor, saved as an asp file and run.

Get the Free Newsletter!

Subscribe to Daily Tech Insider for top news, trends & analysis

Latest Posts

Related Stories