i have a table...with th e subject notes that has been uploaded using my system..now i would like to display all the subject notes that has been uploaded in a upload table...
and let the user to choose/click on it to save it to a certain directory(sumthing like dowloading the notes)..but i dont know how to display th save as window when the user clicked on the subject.
What is the appropriate control or code to pop a "save as" dialog window to allow the user of a web page to save a document after they click on a link? All of the CommonDialog controls obviously are to be used on WinForms, so not sure how to accomplish this from an aspx page.
a customer already has a website with ASP pages to request a call from a salesman... and it emails HQ with about 20 form values and also emails the customer.
what we'd like to do in a simple way is store those 20 fields somewhere they can be downloaded as well, instead of messing with the emails. but i don't want to mess with any rdbms (cause we don't have access to the server--- long story) so i'm wondering if some simple commands can just write the data to a physical file somewhere in webroot so it can be downloaded at a later time.
I have an asp page, which displays graphical images.I am using Flipper graph in my application.
There is a link in the asp page "Click to view Image file",On clicking on this link,The graphical image need to be stored(Preferably in the server machine) and has to be opened in a new browser window.
To explain in detail. On clicking of that link"Click to view Image file" a function is called which does the following
1)Save the image file(.gif file) on the server machine Graph.ImagetoGif("Location to be saved",100,200); 2) Opens the image on a new browser window.
window.open('from location from where the image is to be retreived',100,some more properties) So i need the image file to be saved in the server and retreived from the server.
I have an ASP page where an applicant would keyin his details. Nothing but his resume on line. My problem is that we have a large text wherein the candidate will paste his entire resume for reference. Once he submits it, while viewing if we copy and paste the text to word, the alignment is not there at all.
Could anyone suggest some option to attach the resume and store it in the database and then downloading the resume as it is. Could anyone help me out on this as soon as possible.
Can someone please (i dont even know where to start on this as i am completely incapable of file or image functions at the moment) help me do this:
i want to write a script that will copy an image from an internet page, then save it in a folder with the speficied filename. The url link is like this : http://ipaddressort/BufferingImage?ImageAdr=123456.
The image is captured by the webcam, of course I can view it in the browser by typing the url, but I want to save it without any popup window or right click, I want to do it in the script.
How the heck would I go about saving an object to file? Put would be perfect, and can basically save everything except objects - how do I save an object if I can't use put?
I want to loop through a recordset and save each records contents as text files and then zip all the text files and promt user to download the zip --- can this be done?? Does anyone have any code?
I am creating csv file by doing following. So when asp page get load this code run and it create csv file and store in specified location.
How can i open this store file in same window after it get created. I have a name and location of file "whichfn" how can i open into excel format. Code:
After a user make the search, it returns 100 rows of record on the display page. I want to give an option for the user to save the records as Excel spreadsheet. Like a small icon on the corner, it prompts to save if click.Can anyone teach me how to do it? or have a simple tutorial or code that i can see?
i want to write an application in ASP,in this i want to generate an excel file,in which all records will save in that excel file as per i ve given the query after saving records in excel file ,immediately i should get save as dialog box so that i will save that file on my local drive.i don't want to save that file on web, whenever file gets created & records saved,it will show me save as dialog box.
i have a very simple online store/shop which is still in development, once payment has been accepted the contents of the shopping cart is written to a database what i want to do is also write this info to a text or html file so i can then send it via email using cdosys i have all ready tried to do this using .creatmhtmlbody() but this will not work due to the way i am using session variables.
the main program i am using is Dreamweaver, i am using access as the database this is all running/testing on a windows server 2003 the code is in JScript (before you all start shouting at me i know i should have used VB script and SQL but too late for me now) but either way i am just asking for roughly how to do this, even if it can be done.
the client uses its machine and browse the path D:filesabc.xls . now if we want to upload the file, server find that path on its own machine and cant find that file. how i can overcome this problem. i m using FileSystemObject for copying file. i also try to save the file using stream but no success. same problem.
I have a small search engine that searches for strings, anyways I want to save each search query that users are searching for in a text file (".txt"). I tried this one as an example: Code:
<% dim fs, f set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.CreateTextFile("c: est.txt",true) f.WriteLine("Hello World!") f.Close set f=nothing set fs=nothing %>
But when I ran it, It gave me an error "Permission denid".. so whats the problem with it.
I wrote a code that allow to open a Word document, and save it. Before it worked perfectly... but after changing the Server, it doesn't work anymore! Code:
I am not able to save the file path into database remaining everything is working good i can upload the image to the folder and save the data to the database. I am using MySQL database .....
How can i save the textarea(retrieved from DB) data to client system as a textfile.I am using filesystemobject to create a text file with the path
set fso=server.createObject("scripting.filesystemobject") set ctext=fso.createtextfile("c:mydata.txt",true) ctext.close set ctext=nothing set fso=nothing
But it is storing in the server cwebserver c: drive) My users will access simultaneously in my LAN. They use these textfiles to print in DOS mode. Coz it contains large and formated data and to print faster. How can i store the generated output to the client system only instead of server. B'coz the data generated is diff for each user.
I've got a simple recordset which writes a html table. I've put the following code at the top of my asp page:Code:
response.ContentType = "application/vnd.ms-excel" response.AddHeader "content-disposition", "inline; filename=filename.xls" ...then done a response.write to write the table.
This should output an Excel file, but it doesn't? It just writes the table to my browser as a standard HTML page. Can anyone see how to solve this problem?
Is there a way to save a file from a remote location to my local computer with asp?
Let's say as an example that I would like to save a file from http://www.somesite.com/file.txt to c:file.txt on my pc using an asp page located either on one of the two locations?