473,396 Members | 1,809 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.

ASPFileUpload Not working working using MAC Safari browser

Using ASPFileUpload
(http://support.microsoft.com/default...b;en-us;299692) and works
for IE6 and FireFox but not Safari.

Thanks in advance for your assistance.
Jul 22 '05 #1
5 2430
What does "not work" mean? Have you tried any other approaches (some of
which are free):
http://www.aspfaq.com/2189

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Foreman" <Fo*****@discussions.microsoft.com> wrote in message
news:E3**********************************@microsof t.com...
Using ASPFileUpload
(http://support.microsoft.com/default...b;en-us;299692) and works
for IE6 and FireFox but not Safari.

Thanks in advance for your assistance.

Jul 22 '05 #2
You'll need to explain what you mean by "not working"

Have you tried running the component in a debugger to see what is happening?

You might also give one of the Script-only uploaders a try to see if it
behaves differently.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Foreman" <Fo*****@discussions.microsoft.com> wrote in message
news:E3**********************************@microsof t.com...
Using ASPFileUpload
(http://support.microsoft.com/default...b;en-us;299692) and works
for IE6 and FireFox but not Safari.

Thanks in advance for your assistance.

Jul 22 '05 #3
Hey there,

What happens is the following:

IE6 (correct):

The main form calls an asp file that creates a folder, creates a text file
in the new folder, and then calls the ASPFileUploads dll (provided by MSDN)
and DOES upload the file to the new folder.

Safari (incorrect):

The main form calls an asp file that creates 10-20 folders (arbitrarily) and
then calls the ASPFileUploads dll (provided by MSDN) and DOES NOT upload the
file.

Thanks in advance for your assistance.
"Aaron [SQL Server MVP]" wrote:
What does "not work" mean? Have you tried any other approaches (some of
which are free):
http://www.aspfaq.com/2189

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Foreman" <Fo*****@discussions.microsoft.com> wrote in message
news:E3**********************************@microsof t.com...
Using ASPFileUpload
(http://support.microsoft.com/default...b;en-us;299692) and works
for IE6 and FireFox but not Safari.

Thanks in advance for your assistance.


Jul 22 '05 #4
Safari is probably not sending the data in a format that the ASPUpload
component expects.

If you have a network trace utility available have a look at a request from
each browser. If not try using a simple page to do a binary read and write
the entire thing to a file so that you can see the differences.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Foreman" <Fo*****@discussions.microsoft.com> wrote in message
news:68**********************************@microsof t.com...
Hey there,

What happens is the following:

IE6 (correct):

The main form calls an asp file that creates a folder, creates a text file
in the new folder, and then calls the ASPFileUploads dll (provided by MSDN) and DOES upload the file to the new folder.

Safari (incorrect):

The main form calls an asp file that creates 10-20 folders (arbitrarily) and then calls the ASPFileUploads dll (provided by MSDN) and DOES NOT upload the file.

Thanks in advance for your assistance.
"Aaron [SQL Server MVP]" wrote:
What does "not work" mean? Have you tried any other approaches (some of
which are free):
http://www.aspfaq.com/2189

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Foreman" <Fo*****@discussions.microsoft.com> wrote in message
news:E3**********************************@microsof t.com...
Using ASPFileUpload
(http://support.microsoft.com/default...b;en-us;299692) and works for IE6 and FireFox but not Safari.

Thanks in advance for your assistance.


Jul 22 '05 #5
Hello,

Here is the full outline of the issue:

------------------------------------------
Server: Windows 2000
Web Server: IIS 5.0
Database: SQL Server 2000 Spk 3
Web Pages: ASP (MDE 6.0)
------------------------------------------

History
------------------------------------------
I have an ASP Page that uses enctype="multipart/form-data" and posts the
form upload to another asp file.

The second asp file opens SQL Server, creates a new record in the Uploads
table and retrieves the ID. The ID is used as the name of a new folder
created. Then the file is uploaded the new folder location using the
ASPFileUpload dll provided by MSDN.

Problem
------------------------------------------
When using the Safari browser (MAC OS X) there are numerous records created
in the DB and numerous folders created, with no uploaded file present.

It is as if the Safari browser is calling the page 10 times, and only going
as far as the new record in the DB and the creation of the folders each time.

Finally the following error occurs on the MAC: "Safari can't connect to the
server: Safari can't open the page '<http page>' because it could not connect
to the server '<web site root>'".

Thanks in advance.

"Mark Schupp" wrote:
Safari is probably not sending the data in a format that the ASPUpload
component expects.

If you have a network trace utility available have a look at a request from
each browser. If not try using a simple page to do a binary read and write
the entire thing to a file so that you can see the differences.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Foreman" <Fo*****@discussions.microsoft.com> wrote in message
news:68**********************************@microsof t.com...
Hey there,

What happens is the following:

IE6 (correct):

The main form calls an asp file that creates a folder, creates a text file
in the new folder, and then calls the ASPFileUploads dll (provided by

MSDN)
and DOES upload the file to the new folder.

Safari (incorrect):

The main form calls an asp file that creates 10-20 folders (arbitrarily)

and
then calls the ASPFileUploads dll (provided by MSDN) and DOES NOT upload

the
file.

Thanks in advance for your assistance.
"Aaron [SQL Server MVP]" wrote:
What does "not work" mean? Have you tried any other approaches (some of
which are free):
http://www.aspfaq.com/2189

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Foreman" <Fo*****@discussions.microsoft.com> wrote in message
news:E3**********************************@microsof t.com...
> Using ASPFileUpload
> (http://support.microsoft.com/default...b;en-us;299692) and works > for IE6 and FireFox but not Safari.
>
> Thanks in advance for your assistance.


Jul 22 '05 #6

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

Similar topics

5
by: Paul | last post by:
I'm using Microsoft's ASPFileUpload routines and all works fine as long as my files are smaller than about 200K. For anything larger than about 210K, I get the following error: Error Type:...
0
by: Scott Townsend | last post by:
We are trying to get the Microsoft ASPFileUpload to work on both Win2003 and Win2000 http://support.microsoft.com/default.aspx?scid=kb;en-us;q299692 We can now get large and small files on our...
4
by: Martin! | last post by:
hi all, yesterday i checked some of my sites with safari on a mac with os x and saw that some things didnt show up as they do in IE and FF. these things include a css_roll_menu and a suckerfish...
4
by: Pasquale | last post by:
I am using the function below to add multiple checkbox selection to an array. The form gets submitted to a PHP script. The function works fine with IE 6, Netscape 7 and Firefox 1, but it is not...
133
by: Alan Silver | last post by:
Hello, Just wondered what range of browsers, versions and OSs people are using to test pages. Also, since I don't have access to a Mac, will I have problems not being able to test on any Mac...
2
by: drew197 | last post by:
I am a newbie. This is someone else's code which I have to modify to work in Mozilla and Safari. The changes I made so far have allowed it to work in Mozilla but not Safari. It seems to be...
2
by: Sudantha | last post by:
Hi, I'm working with a web application which is developed using asp.net c#. In a particular page when click on a button it has to do a process and then proceed to another page. While in this process...
3
by: gsuns82 | last post by:
Hi all, The following code is not working properly in Mac os/safari browser. function newWindow(){ window.open('<jstl_core:url...
10
by: Conrad Lender | last post by:
In a recent thread in this group, I said that in some cases object detection and feature tests weren't sufficient in the development of cross-browser applications, and that there were situations...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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,...

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.