-1

ユーザーがいくつかの情報を挿入し、htmlファイル(DBにはない)として保存できるページがあります。ただし、すべてのhtmlファイルの情報に基づいてレポートを再生成する必要があります。たとえば、htmlファイル内はユーザーの給与で構成されており、値を取得して給与の合計を合計する必要があります。

StreamReaderを使用してすべてのhtmlファイルを読み取り、すべての給与を配列に格納する予定です。しかし、それが私のアプリケーションのパフォーマンスに影響を与える可能性があるのではないかと心配しています。だから、私はこれを行うためのより良い方法があることを知りたいですか?

4

1 に答える 1

0

If your application allows the user to modify a html page content then surely it makes more sense to save the users input into an XML and then use that XML file for future manipulations and there-by leaving the actual HTML form untouched for the next(?) user.

Also your derived XML file can be as complex or as simple as you need.

于 2013-01-11T02:30:47.063 に答える