How can I get an HTML page (.html) to read the contents of a text document that can be found in the same folder as the .html file? The server is IIS.
Thanks
|
|
How can I get an HTML page (.html) to read the contents of a text document that can be found in the same folder as the .html file? The server is IIS. Thanks |
||
|
|
|
|
Google for server-side includes. |
||
|
|
|
|
It seems like you can use #include directives in IIS. http://msdn.microsoft.com/en-us/library/ms525185.aspx But to be honest I strongly suggest using a scripting language, either PHP or something in the ASP family. |
||
|
|
|
|
You can put an url to the text file directly, the user will download it by clicking. If this is not what you want, then you can probably use Server Side Includes (see here and here). If this does not work, you must write a script (ASP?) to read the file. |
|||
|
|
|
one hesitates to suggest iframes, but out of completeness... (You probably need server side includes, but you probably have bigger issues in general) |
||
|
|
|
|
By adding the following JavaScript code to the element of the web page:
|
||
|
|
|
IIS can do server-side includes. BUt, if you can't do this, and want to include the text file in the HTML, you could grab the file with an XMLHTTPRequest object and insert it into the DOM with Javascript. Naturally, a JS library will make this easier. For example in prototype:
that would grab the file and drop the contents into Or in jQuery:
|
|||
|