I have data in CSV and I am showing it using AJAX, JSON on front end using asp.net but It is not indexed in search engine. Is there alternative way to show data from CSV on front end so that it is indexed in search engines ? What Id data is in XML format as well. Which format should I choose and will it give benefit over CSV ?
Regards, Asif Hameed
In order for your file to be indexed it just needs a link to make it publicly available to the web crawler.
You could create a special case to make that file available in IIS, or you could write an HttpHandler to serve up the raw contents of the file. Either way, you just need a way for the web crawler to discover the URL, and grab the contents.