473,653 Members | 3,000 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

traversing a client directory in ASP.NET

I want to traverse to a client directory and show the clients directory and
files. Is there a way without using the the <input> tag? I mean dynamically
retrieving the directory information of the client browsing the web page?
Nov 19 '05 #1
10 1683
Better yet, give me your e-mail address and I'll just send you my personal
files over to you.

"slim_naldy " <sl*******@disc ussions.microso ft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
I want to traverse to a client directory and show the clients directory and
files. Is there a way without using the the <input> tag? I mean
dynamically
retrieving the directory information of the client browsing the web page?

Nov 19 '05 #2
you can send it over to:
sl********@hotm ail.com
rk*******@gmail .com

Thanks!

"gabe garza" wrote:
Better yet, give me your e-mail address and I'll just send you my personal
files over to you.

"slim_naldy " <sl*******@disc ussions.microso ft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
I want to traverse to a client directory and show the clients directory and
files. Is there a way without using the the <input> tag? I mean
dynamically
retrieving the directory information of the client browsing the web page?


Nov 19 '05 #3
or
sl********@yaho o.com

"slim_naldy " wrote:
you can send it over to:
sl********@hotm ail.com
rk*******@gmail .com

Thanks!

"gabe garza" wrote:
Better yet, give me your e-mail address and I'll just send you my personal
files over to you.

"slim_naldy " <sl*******@disc ussions.microso ft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
I want to traverse to a client directory and show the clients directory and
files. Is there a way without using the the <input> tag? I mean
dynamically
retrieving the directory information of the client browsing the web page?


Nov 19 '05 #4
or sl********@yaho o.com

"slim_naldy " wrote:
you can send it over to:
sl********@hotm ail.com
rk*******@gmail .com

Thanks!

"gabe garza" wrote:
Better yet, give me your e-mail address and I'll just send you my personal
files over to you.

"slim_naldy " <sl*******@disc ussions.microso ft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
I want to traverse to a client directory and show the clients directory and
files. Is there a way without using the the <input> tag? I mean
dynamically
retrieving the directory information of the client browsing the web page?


Nov 19 '05 #5
No, there is no way for the server code to know anything about the client
file system.
"slim_naldy " <sl*******@disc ussions.microso ft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
I want to traverse to a client directory and show the clients directory and
files. Is there a way without using the the <input> tag? I mean
dynamically
retrieving the directory information of the client browsing the web page?

Nov 19 '05 #6
"slim_naldy " <sl*******@disc ussions.microso ft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
I want to traverse to a client directory and show the clients directory and
files. Is there a way without using the the <input> tag? I mean
dynamically
retrieving the directory information of the client browsing the web page?


Yes, but not natively in the .NET Framework. For this, you need a Java
applet such as: http://www.unlimitedftp.ca/products/udownload/
Nov 19 '05 #7
It doesn't have to be a Java applet. It can be any client-side component
programmed to do the task. An ActiveX control can do it. The client-side
FileSystemObjec t can do it, etc. The point is, it can't be done with
server-side code.
"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:e%******** ********@TK2MSF TNGP10.phx.gbl. ..
"slim_naldy " <sl*******@disc ussions.microso ft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
I want to traverse to a client directory and show the clients directory
and
files. Is there a way without using the the <input> tag? I mean
dynamically
retrieving the directory information of the client browsing the web page?


Yes, but not natively in the .NET Framework. For this, you need a Java
applet such as: http://www.unlimitedftp.ca/products/udownload/

Nov 19 '05 #8
"Scott M." <s-***@nospam.nosp am> wrote in message
news:e4******** ******@TK2MSFTN GP10.phx.gbl...
It doesn't have to be a Java applet.
It can be any client-side component programmed to do the task. An
ActiveX control can do it. The client-side FileSystemObjec t can do it,
etc.
Not if it needs to be cross-browser compatible...
The point is, it can't be done with server-side code.


Indeed, though that's not actually what the OP asked...
Nov 19 '05 #9
Well, OP could always write an ActiveX control...

--
Regards,
Alvin Bruney - ASP.NET MVP

[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
Now available @ www.lulu.com/owc, Amazon.com etc
"Scott M." <s-***@nospam.nosp am> wrote in message
news:es******** ******@TK2MSFTN GP15.phx.gbl...
No, there is no way for the server code to know anything about the client
file system.
"slim_naldy " <sl*******@disc ussions.microso ft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
I want to traverse to a client directory and show the clients directory
and
files. Is there a way without using the the <input> tag? I mean
dynamically
retrieving the directory information of the client browsing the web page?


Nov 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1945
by: Plamen Valtchev | last post by:
This is my problem: From JavaScript I want to find the list of all defined/loaded JavaScript functions/objects/names within the current scope (html page in a browser). the page could contain many included javascript with the script tag : <script language="javascript" src="XXX/Script.js"></script>
4
4868
by: plmanikandan | last post by:
Hi, I am new to link list programming.I need to traverse from the end of link list.Is there any way to find the end of link list without traversing from start(i.e traversing from first to find the next for null).Is there any way to find the length of linked list in c.My need is to traverse from the end to 5th node Regards, Mani
6
1716
by: PipedreamerGrey | last post by:
I'm using the script below (originally from http://effbot.org, given to me here) to open all of the text files in a directory and its subdirectories and combine them into one Rich text file (index.rtf). Now I'm adapting the script to convert all the text files into individual html files. What I can't figure out is how to trigger a change in the background value for each folder change (not each file), so that text is color-coded by...
1
2088
by: SGilch | last post by:
I am new to javascript, and wondering if it is capable of implementing a browsing mechanism for the browser to upload the names of files in a client side directory to the server. The client would select a local directory through its web browser based on a page from the server and when hitting the submit button would upload a list of the files in the directory. So, I am looking for a way where the client can: - click a browse button on the...
30
4270
by: asit | last post by:
We kno that data can be pushed onto the stack or popped 4m it. Can stack be traversed ??
1
1523
by: somcool | last post by:
I am facing an error while traversing a query in MS Access Details - When I click a button, a form which has the query opens up. There are certain fields which are in the form of combo box in the query. The query comes from a table which picks values from another table. When I try traversing the query through TAB button, I get the following warning - "The value you entered isnt valid for this field. For example you might have entered a text...
4
1346
by: sutejok | last post by:
Hi, I'm thinking of something like Ruby's Watir, where we can give it a command like - open a web address - click button labelled "submit" - select drop down list labelled "age", select 4th item - etc
1
6432
by: rahullko05 | last post by:
I am try to write a program which can recursively traverse all files and if it finds directory then it goes inside that sub directory and list all files of that subdirectory, again comes back to main directory to traverse rest of the files... Problem i am facing is, its just going inside first sub directory it comes across and then comes back to main directory, and treats all other files as files (even if its a directory). i am not able to...
4
14924
by: ndedhia1 | last post by:
Hi. I am writing a java program in which I want to ftp a file to another unix box. First I have to check if the directory exists in which I am ftping into and if it does not exist, I have to create it: this is the code that I am using that is not working properly: System.out.println("YOU ARE IN UPLOAD"); System.out.println("THIS IS THE HOST: " + host); SshClient ssh = new SshClient();
0
8811
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8470
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7302
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6160
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5620
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4147
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4291
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1914
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1591
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.