Upload Speed Problem

currently using an asp upload to upload file into server, but finding it the transfer speed quite slow, anyone know the faster way or script to upload file into server in asp? or in other language?PHP?

View Replies


ADVERTISEMENT

Speed

If I want to get the number of rows returned from the database along with the contents, I would assume that GetRows() would be the best way, and then doing a UBound(myArray,2) + 1 would be the best way to give me the number of records.
If I do NOT need the actual database info, but I just need the number of rows, should I use GetRows or COUNT(ID) in my SQL or what?

View Replies View Related

Speed Rates

my asp pages use mysql db...i got 40 tables.
mostly the site system uses 7 tables only...
in the past i used access mdb database but after this 5 tables fulfilled with something like 10000 records it was so slow i could read a book before it moved...
then i moved to sql...

now the question is for who had/have asp pages connected to mysql with more than 50,000 records...
how is the speed? can you see the speed diffrence with the growing of numbers of records?
if i got slow speed when i ask my asp pages to show me some records, is that because i got more than normal number of records inside one table?
80,000 records inside one mysql table sounds to you normal?

View Replies View Related

ASP- Reliability Speed

I am about to implement an online auction system similar to ebay. I am debating between two products. One is PHP the other ASP (PHP Auction and Rainworx).

I typically like PHP better, because I've noticed ASP always seems to turn up an error (even on professional sites), but the ASP system has more of the features that I need.

Can anyone tell me the pros/cons of ASP vs. PHP? My largets concern is speed. Is ASP fast? and is it reliable? I've heard something about the code breaks down over time, etc.

View Replies View Related

Speed Up Query

I are there ANY secrets in sql 2000 to speed up this process on the webpage? I tried using indexes... expanding the timeout... it is still too big and we cannot archive any records.

View Replies View Related

How To Speed Up Code

I'm using get rows to build a table for a calendar. The specific view for this calendar is for an entire month. Each appointment slot is one half hour long. If I were to generate a page for the month of november I would have to check and see if an appointment is scheduled for each appointment slot throughout the entire month. this is 240 slots! At this point I've written it so it only checks for an appointment if a particular day has an appointment, even so, with only 20 or so appointments scheduled for the entire month, it's taking several seconds to return the results.

I was thinking it might be best to pay a javascript programmer to write a script that will parse through the whole mess to offload it onto the client. What would you recommend?

View Replies View Related

Speed Up Datasearch

The code below is searching a ms access database that contains approx 53,000 records. This code go's into the data and extracts the files pertaining to this customer but the scripts takes approx 40 + seconds to search. Is there something different I can do to speed up the process ? Code:

Dim rs, sql
Set rs = Server.CreateObject("ADODB.Recordset")
sql = "SELECT Left(CUSTNOITEM, 4) as CustNo,Right(CUSTNOITEM, 9) as CustNoI,CLASS,descrip,SEQ_NO FROM ARCPRICQ WHERE Left(CUSTNOITEM, 4) = '" & Session("login") & "' ORDER BY " & Mysort & " ;"
rs.Open sql, db, adOpenForwardOnly, adLockOptimistic
While Not rs.EOF

View Replies View Related

Determine Connection Speed

Just wondering if anyone knows how to determine someones connection speed in asp the reason for this being so i can redirect the user to a different media file depending on their connection speed.

View Replies View Related

Client Connection Speed

is any idea to find client connection speed like google analytics report on connection?

View Replies View Related

Main Point Of Loading Speed

if a page always have some picture that totally have near 250k does this a main point of affect the loading speed?

View Replies View Related

How Can I Speed Up The Load Time On Page?

This page takes awhile to load which is probably due to the queries and the way I have it outputed. Anybody have any advice for speeding this up? Code:

View Replies View Related

How Can I Increase The Speed Of Sending Email By Asp

i m trying to write a script for sending email to many people at a time and i m getting the email addresses from database .my script is working but after sending to 8 or 9 people script timed out.

now how can i increase the speed of sending email almost to 60000 people.my script is here.

View Replies View Related

Speed Test/benchmark Page Generation

I'm pretty sure this is possible in ASP, something about making CPU time markers and then taking the difference and switching it into seconds/minutes I just don't recall how to go about doing it.

View Replies View Related

Upload Excel With Macros Using HTML File Upload

We face problems uploading excel (with macros) documents using HTML
File Upload.

The file contents are corrupted while viewing the same. However, we
are able to upload excel (w/o. macros) documents successfully. Is
there anything we have to take care of, while handling uploads of
excel documents with macros?

View Replies View Related

ASP Upload Error - Persits.Upload.1 (0x800A001C)

I keep getting the following error message when attempting to run the below script.

Persits.Upload.1 (0x800A001)
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
line 42.

line 42 is "File.ToDatabase Connect, SQL"

Code:

View Replies View Related

Persits Upload ( ASP Upload ) AND Database Integration

I need some help with aspupload and a database. I have used the same script before and it worked fine, but now it wont upload. Code:

View Replies View Related

Pure ASP Upload - Upload To 2 Directories?

I have been using pure asp upload for uploading pictures and files fo rome time now.
I have a question about it thou - Is there any chance that the pure asp upload can upload a file to a directory and then copy it to a backup directory?

If anyone ever come accross this issue please let me know how u resolve it.

View Replies View Related

Upload

I use a windows application that can upload data to a http server.

I don't know exactly how the application uploads the data, but looking at the data communication I can see that the application tries to post data of type "multipart/form-data".

How can I make an asp script on my webserver that receives this data and store in on the hard drive?

View Replies View Related

Upload From URL

Is there any way to upload an image from a URL in ASP? I'm sure it's possible, but I can't find anything on it.

View Replies View Related

Asp Upload

How to Upload files in Asp with small source codes.

View Replies View Related

ASP Upload

I need to upload files from a web page to the server using ASP.

I've tried the following:

Can't use ASPUpload (persits) because it costs money
Can't use ASPFree because it requires VBScript 5.0

Tried ASPSmart and it says you need to save dlls to the NT Server. I dont think I can do this with my host.

Tried Dundas, but I'm completely lost with how to use it. It only seemed to download help files.

Can anybody recommend something simple to use? I don't need anything flash. Just the ability to upload a single file.

View Replies View Related

Pic Upload

on my site www.mutedesigns.co.uk/ws
if you log in
user: test
pass: test

and add a new picture, browse for picture then click upload, it asks you to copy and paste the name you just uploaded into the form field after UPLOADS/
how do i get to insert this filename into the database?

View Replies View Related

Upload

We have a page that handles uploads, but it's hitting the 90 sec default timeout. If place this server.ScriptTimeout = 150 at the top of the page, will it set the time out for just the one asp page, or reset the value at the server level, and thus adjust it for everything.

View Replies View Related

Upload Pic

i manage to store the picture pathname into database... c:folders
lablabla....with my primary key A
but how do i retrieve it back with my primary key ?? it is simple to
do in php and .net

View Replies View Related

ASP Upload

I want to offer the ablity for a user to upload an image to a specified directory on the server whilst inserting a record into a mysql database.

For example a user wants to add a new employee. They enter the revelant information into the form and they upload an image connected to that new employee about to be inserted.

Is this possible? how would you upload the image and link the image to the recordset in the database?

View Replies View Related

ASP Upload

is there a way i can use GET method to pass the upload file value. I mean somethin like: have the file field on one page where you get to choose the file and then there is a submit button which calls the the actual upload script which has a button named Upload.

Is that posible to do? cuz all the upload scripts i've seen so far has the file field in the same file as the code that uploads.

View Replies View Related

Most Pdf's And Bmp's Upload

Been using the same upload script for over 2 years. Recently, 2 images have given the error below. One was a pdf and one was a bmp. Other (and larger file size) pdf's and bmp's have uploaded with no problem. What could be different about these two images that would cause this error?

Persits.MailSender.4 error '800a0007'

The system cannot find the file specified.

View Replies View Related

Upload.asp

Sometimes I have a problem in upload file (not allways). My cod is:

Public Default Sub Upload()
Dim biData, sInputName
Dim nPosBegin, nPosEnd, nPos, vDataBounds, nDataBoundPos
Dim nPosFile, nPosBound

biData = Request.BinaryRead(Request.TotalBytes)
nPosBegin = 1
nPosEnd = InstrB(nPosBegin, biData, CByteString(Chr(13)))

The error that appears is in line "biData = Request.BinaryRead(Request.TotalBytes)"

View Replies View Related

Asp Upload

I want to include a text element to the asp upload file. When I read the documentation, it says that I have include Form collection to process the text element and include as:

strusername = upload.form("username")

I am not sure where this username should be defined and how do I process this text element along with the filename?

View Replies View Related

How To Upload File In Asp.

I'm working on a asp-application where I shall upload a xml-file from the
user, and then process til file (xml) for insert into a database. I'm currently
using a "INPUT-field of TYPE=file" to browse for file, and a extra submit button
to perform the actual transfer and start file-processing.

Is it possible to show the user one ebutton "IMPORT" without any text-field
associated with it, which browses for the file and directly startes the
upload to server and triggers file-processing. The actual processing of the file
must be done on the server-side (inserts to db etc.).

View Replies View Related

Simple Upload

i'm trying to create just a simple upload - fill in a form with the article
title, and description - and select a file - i need to upload that file to
the webserver, and then rename that file to the <% =Sartid %>.pdf

any ideas where to get something this simple from? never done anything like
this before - i'm guessing the FSO will be used?

View Replies View Related

PDA, File Upload

Is it possible to upload files using <INPUT type="file"> tag from IE on PDA .

View Replies View Related

Ftp File Upload In Asp

when i load the page nothing happens, it just refreshes to a blank page. does this page need to be named something special? does it need to be on the same server it's uploading to? Code:

View Replies View Related







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