I tried to read a text file from my local com, but it keep on loading and loading, after tat, i'll need to restart my IIS... im sure tat the directory of the txt file is correct... The code is running very well in another com, is there any kind of permission/ something i missed?
I'm attempting to read from a text file and output the contents into one variable that I can write to the page later. I can't Response.Write the thing because of the way our system is designed. Here's the code I got so far:
<% set objFSO =server.createobject("scripting.filesystemObject") path = "E:******************" & session("ENTRYPAGE") & "content.asp" path = replace(path,"www.","") set objstream = objFSO.opentextfile(path) do while not objstream.atendofStream lineText = objstream.readline lineText = lineText & lineText loop response.write linetext objstream.close %>
All I get for output is the last line of the text file twice.
Note: The content.asp that I'm trying to load in does not contain any ASP. All of the content is HTML.
I was looking for a method to store the contents of text file within a variable. So far I am able to read the text file and output the results using the write method. Going a step further I also wanted to replace a particular string within those same results using the "Replace" function. This works as well.
My question, how can I store the final result that write's to the screen so that I can reference it later. If you run this code, I basically want to take the verbiage that displays on the sreen and place it into a variable. Code:
I'm write an asp to include part of a text file into my asp output html, I use FileSystemObject to get the content of the text file, but the asp just hang when it runs, the source code is listed below if anyone could help: Code:
I would like to allow my customers to upload their log files so that I can analyze them. Using ASP, I've found ways to: 1) upload files using the standard form elements and save it to my server using: Code:
<input type= file>
2) from the file on my server, i can parse the text file and return results to the user However, I would prefer not saving hundreds of random text files on my server. Is there a way that I can see the contents of the uploaded text file using ASP without saving it to the server? Is there something using the filesystemobject that allows me to do this?
I am working on a safetywear deduction system and i need to perform the following functions: write to a text file and read from a test file and wrute to a table in the database. I need code to write and read to a text file in asp please.
I have a log file from my email software program. Each entry is on a line and the values are seperated by tabs. How can I read through this text file such that I insert its contents into a database? Thanks. Tom
Here is one entry from that file:
11/30/06 00:00:21SMTP-IN25AA24076F2041D7B35E97EE7748D06C.MAI65284.244.91.208EHLOEHLO [84.244.91.208]250-home [84.244.91.208], this server offers 4 extensions11922
I want to read an asp file as a text file. The problem is that the file that I want it to read is located on a server. For example: I want to read te content of this file: http://www.bnro.ro/Ro/Info/default.asp . I want to look after some values in that file.
im wondering if there is a method/command which can be used so that when an asp page is called, it can 'explode' content from a text file (.txt) onto a web page, thus enabling a n00b to alter the text within the file, rather than the web page itself?
Further more, if I wanted to incorporate the text which is exploded into a CSS to give it some style flava, how would I do this? Is it possible?
I have a text file where each record has two fields, name and number, separated by a delimiter. I would like to sort the file contents by the second filed, number, and display to browser. I can do this in php readily, but not seeing how to do it in asp. Can it be done?
I have created a intranet site for a small department in the company i work for. Thanks to the help of these forums I have dabbled into a small bit of asp to automate a few manual processes.
One of the problems I would like to overcome if at all possible is as follows.. There is a network drive for which all the department have read access, the drive is full of useful documentation on processes and how too do things!
The major problem is that there are soo many documennts and different directories tat it would be a nightmare to try and search for what you want.... so this leads me to my question...
Is it possible to have some sort of google type relavence search that not only examines the filenames but also the contents of the files... (the files are mostly excel and word docs).
I want to read textfiles with ASP. But I want to do this in a special way.
I want to set a variable, for each line.
So for example: Dim line1, line2, line3, line4, line5 line1 = Line 1 of the text file line2 = Line 2 of the text file line3 = Line 3 of the text file line4 = Line 4 of the text file line5 = Line 5 of the text file
Is there anyway I can read a text document (Notepad) with ASP? I have a small database of emails in a text document, which I want to use for a newsletter. By using ASPMail I can make this an easy task for me to do weekly.
I'd like to process an ASP page and pipe it's contents out to a file.
I can do this easily in PHP by using the php executable on the command line through a cron job(unix). Is there an equivalent for ASP? I see it as a less complicated cache.
So far I've only been able to output the actual script lines to a file. I want ASP to intrepret, then output.
I have a database that was originally in Excel. After modifying it, I have saved it with .txt and another one with .csv format. DB.txt (Text (Tabl delimited)(*.txt) DB.csv (Text Comma Separated Value) (*.csv). What is the command/statement in oppening database record for these formats?
I am trying to create an ASP page that processes a large block of text that is posted to the page. The data block is approximately 500K. The only was I can figure to get the posted text into a string is using BinaryToString. Is there another way to just get the body of text that is posted?
The emails are coming through fine, though in Outlook the option to 'View as Plain Text' is greyed-out. This should let the user see the plain text version as defined in the code above, but it is inactive.
I have an asp application in which, a page generates reports depending upon the id passed to it. For eg. printpage.asp?id=52 . Now I have a Print button on this page on clicking of which the contents of the page should be read and passed to the activex dll which I have prepared for printing the page.( I had to do this because the printer is installed on the server where the application resides and it should print on the server printer).
Now my question is how to read the asp file (say printpage.asp?id=52) contents in such a way that the fonts and formatting should remain the same, as that content will be printed on the server printer using Active X dll.
how to read the contents of a PDF file from an ASP page? I am trying to create a search engine that displays PDF files and Docs as links in an ASP page once the search request is submitted.
I am trying to read a file through classic ASP. The file is located on a file server, seperate from the webserver. This is the path I'm trying to read the file from FILESERVERMYFOLDERmyfile.txt . How can I accomplish this task?
I'm looking to display a 'phonebook' which will read the columns in a .csv or .txt file and display them in a sortable table by column. Here is what I have an excel file which has nearly 550 first, and last names, extensions, phone numbers, and office locations which I'd like to display on our companies intranet.
I'm looking for a way to show the table in a window with column headings that are clickable to sort by first, last and office name in an alphabetical fashion. Any direction to tutorials, free stuff or development here.
I need to be able to read a tab delimited text file with an asp page so that I can stuff the fields into a sql table.I really don't know how you can do that, I checked the books I have and have been running around the internet trying to find the answer when I found this site.I cannot use a bulk insert statement because I don't have that level of access to the sql server. and I was assured that "BCP is indeed a command-line only utility and cannot be launched from ASP. You could parse the text file with ASP and generate INSERT statements that you then execute against the database. Routines for parsing tab-delimited files can be had by searching for them on google quite easily." by the system administrator
If ASP can read remote file like php does.I am trying to read this weather forecast page, and only output certain line from it.I only know how to read a local file using server.mapPath()
I'm using ASP to generate an RTF (rich text) file, via the FSO. No problems with text, but when it comes to inserting images, the files have to be embedded as either binary or hex.
Try as I might, I can't get binary to work (Word b0rks trying to open the resulting file). When I create a simple RTF in Wordpad and then view its source, Wordpad seems to be embedding the image as hex. Does anyone have a suggestion as to how I could read an image file off the disk in hex format for writing into my RTF?