You can display the indexed pages and words by clicking the links on the ~/UltimateSearchInclude/Admin/UltimateSearch.admin.aspx page under your web application.

You can achieve the same goal programmatically on your own web pages as well. You can display the indexed pages by calling the GetIndexedPages method of the UltimateSearchOutput control. Similarly, you can call the GetIndexedWords method to display the indexed words.

As you may have noticed, these two methods return a DataView that is already sorted, and ready to be displayed. If you want to change the sort order, or display the data in a different fashion you can convert this DataView back into a DataTable. If you want you can put the DataTable into a DataSet, convert it to XML, and apply an XSL stylesheet to build your own format.

In .NET 2.0, you can call the ToTable method of the DataView to convert it to DataTable. In .NET 1.1, you can use the provided ViewToTable method.
 

Disabled due to security concerns. Enabled in the downloaded sample applications.