When an introducer is logged onto our site, I want to create a separate directory for them and place in this an index.asp page that will redirect including a variable to identify them.
I have created the folder with no problem, but when I try and create the ASP file, I'm getting errors. Code:
I am having problems with serving an excel file to client web browsers. I am creating a tab delimited .xls from a recordset. Below is the .asp code. Code:
I want to create a text file,I have read numerous tutorials about this, the problem is when I try to create it,I get an error message saying that I don´t have permission, does anyone know how I can change the settings so I can do this? I´m running my test asp on my local mashine.
I am pulling info from a couple of different tables and writing the info to a formatted text file. Some of the info is pretty staight forward but I can't get my head wrapped around this last part. I'm looping through the items ordered but each line I write needs to be numbered. The bold number needs to 1,2,3,4, etc for each line thats written ("dt|1|" & objRS("SKUid") etc...).
I am trying to create a dynamic CSV file via FileSystemObject.CreateTextFile. I have no problem creating the CSV file normally but I would like to insert comments and VBScript into the coding.
Normally, the file would look something like this: .....
I develop a website on my local computer in ASP/SQL SERVER 2000 in XP PRO OS. The CreateTextFile, DeleteFile and OpenTextFile (for appending and also just for reading) functions doesn't work.
I had done all security rights from IIS (read, write, execute) and I shared the folder with all rights in reading, writing and executing. I don't understand why this functions doesn't work. I have no error display but the script never stop.
I am trying to execute the following function which performs four tests to make sure the current environment is capable of uploading files. Test 1 completes ok, but test 2 results in the page hanging indefinitely.
An error number is not returned (it just hangs on the line: Set testFile = fso.CreateTextFile(fileName, true) ). However when I execute test 2 using VBScript from within an Excel macro it creates the text file without any problem. Code:
I use filesys.createTextFile to create a csv file. If I have about 600 rows(10 columns) then I can see the csv file created. But, if I have about 700 rows(10 columns still) then the csv file not created. I repeated many times and the result is the same. Is there a limitation on filesys.createTextFile?
I know how to use ASP to create and write into a .CSV file on the server, but I have a small problem. Every time I write to the file I am adding new lines each time. I don't know how to wipe the previous contents out, and I thought this is probably a no-brainer for you guys ...
So, I'm looking either to delete the file at the start of the process and start from scratch or
* open the file * wipe all contents from file * write to the newly cleaned file
All I want is a txt file I can write to... and I have a hard time doing it. Only a text file, which I can write strings too (incl timing). My ASP books do not have anything on it and some examples here dont work either.
Im trying to create an XML file dynamically with asp and a data base. everything is working well until the bit where i need to write the file to my server.
I have been using this:
Code:
Set WriteStuff = rsPhotos.OpenXMLFile(strSiteLocationURL & "P4M_new_images.xml", 2, True)
But I now realize that my xml feed is not a .txt file, so I changed it OpenTextFile to OpenXMLFile but it does not work?
i want to generate invoice or bill of an order from an asp application and i want that in xls format and cannot be edited. is there any way to do it......? if yes plz let me know how or the source or tutorials for the same. In short i want to generate invoice in a manner in which user can't edit his invoice which he receives in his email........and i want to do this free......not buying any component.
I have been able to create and Active Server Page that when I link to it will ask if I want to download to an excel file which I do want. It works well, but there is one thing that I haven't been able to get to work yet.
The ASP page has a logo picture in it and I want the picture to download into the excel file also. It doesn't. My code is the following:
I have manage to create a word doc from lotus notes using the createobject("Word.Application"). Now I wanted to add some text in a field on the template. I want to know how to insert a newline in the field.Also I have created a table in the doc file, now i wanted to know how to place at a desired position in the file.
I need to extract some blobs (chm files, actually) from a database and save their contents on the server (recreate chm files).
I tried to do it in several ways (writing the contents to a stream and save the stream to file, writing the contents directly to file, I couldn't figure out how to do it by using the class ADODB.File) but none of them worked.
From ASP I create response, which is to be shown as an Excel worksheet in the user's browser (by setting the ContentType and creating a table). This works fine.
Does anybody know what to do, if one of the cells should contain a multiline text? I already tried by inserting a <br> inside the <td>. But this won't work.
I've created an ASP search engine for a site I'm working on. Does anybody know a good script that will create a log file with all the search requests in.
I'm happy reading / writing data from a database with ASP, I'm afraid I come unstuck when I have to start writing data to loose files on the server. Any help or a link to a good tutorial would be gratefully received.
send me the code for creating text file on client side through asp. or is there any way to direct copy a file from server to client without asking to downloading the file?
I have a page that creates a .CSV file that has been migrated over to Windows Server 2003 from Windows 2000 Server. It worked fine before I moved it, but now when it creates the .CSV file, and you open it, the first row opens in cell A1 and the second row opens in cell A2. Code:
I m creating a cookies in my application and it work properly but i can't see the cookies where it will sotred i checked the cookies folder but i didn't find that I want to create a cookies file as the other web site create and store where other cookies will stored in Cookies folder or Temprory Internet files folder eg:1. arvind@google.co[1].txt this stored in cookies folder 2. arvind@msn[2].txt ....
Environment: Development PC: W2K Professional WebServer: W2K Server, IIS 5.0 Peer-to-Peer network
I'd like to create a new asp.net project on a remote server (not on the local (development) machine. I have looked for info on how to do this, but all I can find are instructions on how to create on localhost, then deploy later to remote machine.
So i currently have an asp page that creates an xml document with information from a database. However I need to link to my schema when creating the Root element here,
Im trying to create a string from checkboxes that have been checked, but for some reason its not working
strNumbers = "" for each key in request.form("chkFacility") strNumbers = strNumbers + "" & key & "," intCount = intcount + 1 next
So I want to end up with a string like this '3,12,7.' Instead Im just getting a single number. Am I doing this the right way. Any help wud be just fantastic!!
I have an asp page where i created cookies-for admin and for user. The aspx page reads these cookies. Everything seems to work fine but now i have to create a new cookie if cookie has expired or if cookie is null. Also, i am having problems with the expire because if the username belongs to the admin for example and then i want to change the username that belongs to a normal user the cookie recognises the first (admin) cookie. How do i solve this? .....