473,396 Members | 2,013 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

line of code for download

Can somebody be willing to provide me a few lines of code?

a submit botton on page that when clicked will open a directory folder i.e
networ/public directory with files and then make a file selection for
download to their pc? It is something like WS-FTP except it is on page.

--

alan
Nov 18 '05 #1
7 1278
Hi Alan,

I wonder if this will do what you need?

"AWS FilePicker is a free ASP.Net web control that lets users navigate
through a folder on the server and select a file. The user can also upload
files to the folder, create subfolders, and copy/move/delete files and
folders. In many ways, FilePicker emulates the "Open File" dialog in Windows
applications."

http://www.asp.net/ControlGallery/Co...901&tabindex=2

"alanb" <al******@comcast.net> wrote in message
news:u8**************@TK2MSFTNGP10.phx.gbl...
Can somebody be willing to provide me a few lines of code?

a submit botton on page that when clicked will open a directory folder i.e
networ/public directory with files and then make a file selection for
download to their pc? It is something like WS-FTP except it is on page.

--

alan


Nov 18 '05 #2
Ken,

I just d/l it and will let you know.
Thank You, Ken for the AWSFilePicker.
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ea**************@TK2MSFTNGP11.phx.gbl...
Hi Alan,

I wonder if this will do what you need?

"AWS FilePicker is a free ASP.Net web control that lets users navigate
through a folder on the server and select a file. The user can also upload
files to the folder, create subfolders, and copy/move/delete files and
folders. In many ways, FilePicker emulates the "Open File" dialog in Windows applications."

http://www.asp.net/ControlGallery/Co...901&tabindex=2
"alanb" <al******@comcast.net> wrote in message
news:u8**************@TK2MSFTNGP10.phx.gbl...
Can somebody be willing to provide me a few lines of code?

a submit botton on page that when clicked will open a directory folder i.e networ/public directory with files and then make a file selection for
download to their pc? It is something like WS-FTP except it is on page.

--

alan

Nov 18 '05 #3
I didn't write it, I just pointed you to it!

Ken

"alanb" <al******@comcast.net> wrote in message
news:Oz**************@TK2MSFTNGP10.phx.gbl...
Ken,

I just d/l it and will let you know.
Thank You, Ken for the AWSFilePicker.
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ea**************@TK2MSFTNGP11.phx.gbl...
Hi Alan,

I wonder if this will do what you need?

"AWS FilePicker is a free ASP.Net web control that lets users navigate
through a folder on the server and select a file. The user can also
upload
files to the folder, create subfolders, and copy/move/delete files and
folders. In many ways, FilePicker emulates the "Open File" dialog in

Windows
applications."

http://www.asp.net/ControlGallery/Co...901&tabindex=2


Nov 18 '05 #4
I just thought you would like to know how I am doing.
Nevertheless, I could not make progress after the install. I had typed
http:// localhost/findpicker.aspx.. But it did not work right. All the time
I thought I have ASP NET framework installed on my machine more than a year
ago. It may look bad for me now; I may have to read its .pdf documents.
Anway, thank you for the link.

"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:uk**************@TK2MSFTNGP09.phx.gbl...
I didn't write it, I just pointed you to it!

Ken

"alanb" <al******@comcast.net> wrote in message
news:Oz**************@TK2MSFTNGP10.phx.gbl...
Ken,

I just d/l it and will let you know.
Thank You, Ken for the AWSFilePicker.
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:ea**************@TK2MSFTNGP11.phx.gbl...
Hi Alan,

I wonder if this will do what you need?

"AWS FilePicker is a free ASP.Net web control that lets users navigate
through a folder on the server and select a file. The user can also
upload
files to the folder, create subfolders, and copy/move/delete files and
folders. In many ways, FilePicker emulates the "Open File" dialog in

Windows
applications."

http://www.asp.net/ControlGallery/Co...901&tabindex=2

Nov 18 '05 #5
Are you sure you're navigating to the right location?

The URL would likely be http://localhost/myweb/findpicker.aspx and if you
are using the binary, the DLL would go in the /bin directory of that Web.
"alanb" <al******@comcast.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I just thought you would like to know how I am doing.
Nevertheless, I could not make progress after the install. I had typed
http:// localhost/findpicker.aspx.. But it did not work right. All the
time
I thought I have ASP NET framework installed on my machine more than a
year
ago. It may look bad for me now; I may have to read its .pdf documents.
Anway, thank you for the link.


Nov 18 '05 #6
You may make suggestions, but I have to tell you that I know little asp.
Right now the IIS server is default at InetPub/wwwroot.
For example I type in http://Myweb/FilePicker, it is actually
http://MyWeb/InetPub/wwwroot/FilePicker.
But the problem crops up when I learned that the FilePicker.aspx is actually
located in
http://MyServerIP/FilePicker/FilePicker/FilePicker.aspx.
When I try open this link, it could not locate the page, but
if I try

http://MyServerIP/FilePicker/FilePicker.aspx
would show something like this below in snippet.
==================================================
<%@ Import Namespace="System.IO.Path" %>
<%@ Import Namespace="System.IO" %>
<%@ Register TagPrefix="cc1" Namespace="ChrisDengler.WebUI.Components"
Assembly="WebMsgBox" %>
<%@ Page trace="False" Inherits="AWS.FilePicker.FileManager"
CodeBehind="FilePicker.aspx.vb" Language="vb" AutoEventWireup="false" %>

<HTML>
<HEAD>
<TITLE> <%=rm.GetString("LOC_LABEL_SELECTAFILE")%>
</TITLE>
================================================== ===
but the FilePicker.aspx does NOT exist in that location.
I am aware of two FILEPICKER folders due to my possible error; I dont know
how it happened.
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:u4**************@TK2MSFTNGP12.phx.gbl...
Are you sure you're navigating to the right location?

The URL would likely be http://localhost/myweb/findpicker.aspx and if you
are using the binary, the DLL would go in the /bin directory of that Web.
"alanb" <al******@comcast.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I just thought you would like to know how I am doing.
Nevertheless, I could not make progress after the install. I had typed
http:// localhost/findpicker.aspx.. But it did not work right. All the
time
I thought I have ASP NET framework installed on my machine more than a
year
ago. It may look bad for me now; I may have to read its .pdf documents.
Anway, thank you for the link.

Nov 18 '05 #7
I notice something.. I think this has to be fixed, first.

for example,

http://localhost/button1.aspx (for example)... the button1.aspx will
respond correctly because it resides in
c:\Inetpub\wwwroot.

If I go one folder further from WWWROOT directory

http://localhost/FilePicker, then HTTP: 403 Msg pops up:
"You are not authorized to view this page." I notice whatever folder I try
to access from wwwroot will display like this.

Any idea?
Alan
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> wrote in message
news:u4**************@TK2MSFTNGP12.phx.gbl...
Are you sure you're navigating to the right location?

The URL would likely be http://localhost/myweb/findpicker.aspx and if you
are using the binary, the DLL would go in the /bin directory of that Web.
"alanb" <al******@comcast.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I just thought you would like to know how I am doing.
Nevertheless, I could not make progress after the install. I had typed
http:// localhost/findpicker.aspx.. But it did not work right. All the
time
I thought I have ASP NET framework installed on my machine more than a
year
ago. It may look bad for me now; I may have to read its .pdf documents.
Anway, thank you for the link.

Nov 18 '05 #8

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

Similar topics

9
by: happy | last post by:
I need to download Command line C compiler ASAP ? Where can I find the latest and moden one ?
8
by: Mike L | last post by:
In VB.NET Windows Form, how do I add a line across the form?
10
by: pmclinn | last post by:
Let's say I have the code below, and I want to complie this on a machine that does not have VS2003 installed on it, but does have the ..net framework... Is it possible to complie this code below,...
2
by: Lila Godel | last post by:
I am having a problem with the download of web pages via the WebClient.DownloadFile function in the specialized VB.Net 2003 I.E. plug-in I am designing to speed up the work on my latest project. ...
20
by: plmanikandan | last post by:
Hi, I need to read a file line by line.each line contains different number of characters.I opened file using fopen function.is there any function to read the file line by line Regards, Mani
1
by: Edward | last post by:
I created a simple CSS layout (code and example below) for bloggin/writing but ran into five issues that I need help with: 1. How do I get rid of the right-margin red line on the last three...
0
by: announce | last post by:
Just a note to let you know about availability of Release 3 of Altova's Version 2007 XML product line. A few of the many new features include: * Support for working with Open XML data in...
1
by: replyrpatil | last post by:
What I am trying to do: I need to print a compact access report (font 6 size) created using RTF2 program developed by Stephen Lebans to generate a TIF image of custom size (5.5 in x 2.0 in) ...
10
by: somenath | last post by:
Hi All, I was trying to write a function which will read one line from a specified file and return the line. It is currently working fine. But it would be very much helpful for me if some one...
18
by: W. Watson | last post by:
See Subject. It's a simple txt file, each line is a Python stmt, but I need up to four digits added to each line with a space between the number field and the text. Perhaps someone has already done...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.