Client File Explorer

how can i see directories and files on my computer? if its FSO please explain how?

View Replies


ADVERTISEMENT

Writing XLS File In Explorer

user wants to download XLS file(which would be genrated dynamically dedending on the user selection).

i dont want to create xls file on the server each time a user wants to download xls file.
I want to create some sort of stream and write that stream to the new popup window by using response object?

View Replies View Related

Opening Word File In Explorer

I want to open word file in explorer. I am using hyperlink for this purpose but it doesnt show me the file opened. Though i able to do save as on it.

View Replies View Related

Client Side File

I have a need to transfer a graphic file to a user's system and then
access that file. I must have the drive letter:path location of the
file. If at all possible I'd prefer that this not require user input.
(Note that since this is my app and in a corporate network, I have the
server in the Trusted Sites zone and every single action is marked
"Enabled" in the IE security settings and users will be using IE
exclusively.)

It doesn't matter to me how the file gets to the
client, save that it get there from IE, and the file is initially
retrieved via a url I give the client. I have even looked into
reading the file out of the IE temporary files but have had no luck.

View Replies View Related

FSO To Create File On Client Pc

im creating an asp using the file scripting object but i cant create the file in the local pf of the client, but rather saves on the server folder.

View Replies View Related

Running Exe File In Client PC

Is there any wayto run an exe file in the Client PC with ASP, bypassing the security warning popup?

View Replies View Related

Download CSV File In Client

how I can save my the result of my SQL Select query in a CSV file and later on
download it in the client side (showing the Save As dialog box...)?

View Replies View Related

Writing The File On The Client Side

I have developed a windows 2000 based web-based

application which uses only HTML and JavaScript code for the

client side and C++ on server side .

Now i need to implement a feature to implement "writing the

log file" on the client machine for this application. As

JavaScript doesn't support client side file writing i think i need

to use ASP or similar language.

1. Is it possible to write on client machine using ASP??

2. If it is possible please thow some light on how to implement
this.

3. Will my code be stable if i embedd the ASP code into the exisiting HTML & JavaScript code?

View Replies View Related

COPYING A FILE TO CLIENT SIDE

how can i copy i file from server to client side ... any solution or can it be?

View Replies View Related

Download File From Server To Client In Asp

we have some exist file at server site.we wants to open it from any client by simple browse or click on file. is tre any tool to do this or any script.

View Replies View Related

Create A File In Client System

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.

View Replies View Related

Save File To Client System

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.

View Replies View Related

Examine A Client-side File

What I'm trying to do here is have the user select a file of thier local machine (dont know what format to make the file yet, examining this problem b4 development) From that file, certain fields on the page will be populated automatically. The file they will select will have been saved from a visit to a different site I created so no worries about formatting.

But I can't seem to figure out how to do this without actually uploading the file.

To repeat, I just want to examine the file and be done with it. If I can't do this without uploading, then could someone explain how I do that because I've been having trouble finding a source that doesnt want me to buy thier .dll. I find it hard to believe that IE would implement input type=file and IIS would not have it's own method of getting that file.

View Replies View Related

Prevent My Client To Delete File

We have offer a web space to hosting our client website. We offer them to upload asp files to their web space. How can I prevent the client from uploading asp files that will harm our web server.

For example, deleting files in our server using Scripting.FileSystemObject to delete our systemmfiles.

View Replies View Related

Check If File Exists On Client

How can I check if a file exists on the client? I have a form which requires the user to upload a document from their computer. In the event they don't enter a valid path to the file the form does not submit. How can I check if the file exists and if it doesn't, provide a suitable response?

View Replies View Related

How To Detect That File Has Been Downloaded On Client Machine

I am working on a web application where i allow users to download text file , the content for this file will be retreived from the database and is passed to the ADODB.stream and is read into Response.binarywrite

I am using the following code which i have got from a forum Code:

View Replies View Related

How Do I Install A MSI File From Webserver On The Client Machine.

I have a web server running on a machine. When the users
connect to that machine, it loads the ASP page. The ASP
page has a ActiveX control on it and it gets downloaded to
the client's machine. I have made the control as a signed
control so there is no problem in download.

Likewise, in the virtual directory path on the server, I
have one clientsettings.MSI and that needs to be run on
the server. Whenever the user tries to connect to the web
page, in onload event of the web page, the .MSI file
should be installed on the clients machine. For this to
happen what all needs to be done ?

View Replies View Related

File Download From Web Server To Client Field

How to download the file from web server to client machine? If anybody have idea, inform to me.

View Replies View Related

Creating Text File In Client Side

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?

View Replies View Related

Delete File On Client Side Machine

Is it possible to delete a file on a client side machine using VB/JAVA script?

My website allows the user to upload a file to the website and after that I would like to delete the file on their machine tried this:

Set fso = CreateObject("Scripting.FileSystemObject")
fso.DeleteFile("C:1-1-S.xml")

But it is always looking to the server machine? How do I say delete file XYZ on client machine. Is this even possible with the security issues?

View Replies View Related

How To Check The Size For Upload File On Client-side

I am developing an web application, it should has the function to upload file from client computer. The uploaded file size can be limited within 10 MB.

But I dont know how to check the size of the file on client-side. Server-side size check is not enough, because it can not be checked until the whole file is received while the server resource(cpu,memory etc) is wasted.

View Replies View Related

File Creation On Server, Without Wasting Client Time

I have a chunk of code, where based on the user's selections, it goes through a database and selects all of the records from the database and writes them to a text file (the database contains nearly 600,000 records), currently, the file is written and the user would end up having to wait for it to be written, before continuing.

Is there a way that this file could be kind of.... tagged or something, so that the server creates it in the background, instead of while the user waits, so the user can continue doing other things, rather then having to wait for the text file to be created.

The files can be quite large, as they can end up being anywhere from 1 - about 600,000 records with between 4 - 10 fields each. Here is a sample of the code that creates the text file. Code:

View Replies View Related

Adding Records With Client-side Excel File

With ASP, how can I automatically add records to a database with an excel file residing on the user's machine? Assuming the excel file has the same field names/datatypes/order as my database table's fields.

View Replies View Related

Explorer

When trying to connect to the internet I get a message "Explorer has encountered a problem and needs to close"--it never actually connects. Prior to this problem I had a bunch of spyware despite having Ad-awareSE, pest patrol, norton anti-virus.

I deleted some programs from "add/remove programs" and may have inadvertently deleted explorer. The desktop icon is gone, I don't find it in "add/remove programs" and i don't find it in windows find/search. I tried system restore and that didn't work either. Should I use my restore disk? Or what?

View Replies View Related

Opening Server-side Excel File Then Modifying It Client Side Using Vbscript

is it possible to open an excel file (used as a template) from server using server-side vbscript; then modify it or add values from client using client-side vbscript?

View Replies View Related

Explorer Progress Bar

I am looking for explorer object of internet explorer progress bar. I
don't know if it accessible to read real time this control.

View Replies View Related

Disable Explorer

I would like to open up explorer without any of the top menu.

View Replies View Related

Avoid Explorer

I'm getting crazy with this. You know that when you install office in your computer it install a plugin for Internet Explorer so when you click in a link to any office document it opens the document inside the explorer instead of asking to save it as normal files.

Do you know how to make internet explorer ask to save the document with HTML or ASP or Javascript?I know that i can disable this option in Internet Explorer options but i don't want to make people do this.I don't want to zip the file neither.

View Replies View Related

Another Instance Of Explorer

How do i lanch a new instance of explorer from withing a current web page.I want to click on a link that take me to a new page in another "window" so that when i close it i see the old window.

View Replies View Related

Executing Server Side .exe File From Client Side

I m writing one code to invoke remote desktop service for given IP address. For that i m using mstsc.exe file to invoke RDP.

I have a no of links to be displayed on the page and on click of link, RDP for that IP should be called. Currently i m using one button to invoke RDP. Code:

View Replies View Related

Hyperlinks Explorer Vs. FireFox

I pull file paths from a database that point to files on our internal server and create links to them. For Explorer this works...

File://servername/file/path/filename.snp

But not for FireFox.

View Replies View Related

Internet Explorer's Buttons

How to disable Internet Explorer's minimize, maximize, close buttons

View Replies View Related

Explorer Does Not Open Page

I've created a small ASP page. When I want to test it, Explorer does not open. The page is working fine on a other pc. When I rename the file with .html, then the page is opening.

I've VB6.0 (SP6), Visual Interdev 6.0 (SP5).

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved