473,569 Members | 2,453 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

I need Help

I am writing this code for file upload in asp 3.0 on my webpage........
It is working on local system but when i want to upload an image on my
website from client machine it is not working .......

can somebody help me

<%@ Language=VBScri pt %>
<%Option Explicit%>
<!-- #include file="upload.as p" -->
<%

'NOTE - YOU MUST HAVE VBSCRIPT v5.0 INSTALLED ON YOUR WEB SERVER
' FOR THIS LIBRARY TO FUNCTION CORRECTLY. YOU CAN OBTAIN IT
' FREE FROM MICROSOFT WHEN YOU INSTALL INTERNET EXPLORER 5.0
' OR LATER.
' Create the FileUploader
Dim Uploader, File, Rs
Set Uploader = New FileUploader

' This starts the upload process
Uploader.Upload ()

'************** *************** *************
' Use [FileUploader object].Form to access
' additional form variables submitted with
' the file upload(s). (used below)
'************** *************** *************
Response.Write "<b>Thank you for your upload " &
Uploader.Form(" fullname") & "</b><br>"

' Check if any files were uploaded
If Uploader.Files. Count = 0 Then
Response.Write "File(s) not uploaded."
Else
' Loop through the uploaded files
For Each File In Uploader.Files. Items

' Check where the user wants to save the file
If Uploader.Form(" saveto") = "disk" Then

' Save the file
File.SaveToDisk "E:\upload"
ElseIf Uploader.Form(" saveto") = "database" Then

dim connection
dim sSQL, sConnString

sSQL = "INSERT INTO MyUploadTable (filename, filesize,
contenttype)VAL UES('"&File.Fil eName&"','"&Fil e.FileSize&"',' "&File.ContentT ype&"')"
sConnString="PR OVIDER=Microsof t.Jet.OLEDB.4.0 ;" & _
"Data Source=" & Server.MapPath( "emails.mdb ")
Set connection = Server.CreateOb ject("ADODB.Con nection")

connection.Open (sConnString)
connection.exec ute(sSQL)

response.write "The data was inserted successfully."
Connection.Clos e
Set Connection = Nothing
End If

' Output the file details to the browser
Response.Write "File Uploaded: " & File.FileName & "<br>"
Response.Write "Size: " & File.FileSize & " bytes<br>"
Response.Write "Type: " & File.ContentTyp e & "<br><br>"
Next
End If

%>

Jun 11 '06 #1
1 2582
Rizwan wrote on 11 jun 2006 in microsoft.publi c.inetserver.as p.general:
I am writing this code for file upload in asp 3.0 on my
webpage........ It is working on local system but when i want to
upload an image on my website from client machine it is not working
.......
Please define "not working", give error texts and erro row numbers, etc
<%@ Language=VBScri pt %>
<%Option Explicit%>
<!-- #include file="upload.as p" -->
How should we know what this "upload.asp " is?
Is it in the present directory?
<%
'NOTE - YOU MUST HAVE VBSCRIPT v5.0 INSTALLED ON YOUR WEB SERVER
[> I am writing this code]

Did you really write that to yourself??????? ???
Or are you just copying and pasting code you do not understand?
' FOR THIS LIBRARY TO FUNCTION CORRECTLY. YOU CAN OBTAIN IT
' FREE FROM MICROSOFT WHEN YOU INSTALL INTERNET EXPLORER 5.0
' OR LATER.
What library and in what directory?
' Create the FileUploader
Dim Uploader, File, Rs
Set Uploader = New FileUploader

' This starts the upload process
Uploader.Upload ()

'************** *************** *************
' Use [FileUploader object].Form to access
' additional form variables submitted with
' the file upload(s). (used below)
'************** *************** *************
Response.Write "<b>Thank you for your upload " &
Uploader.Form(" fullname") & "</b><br>"

' Check if any files were uploaded
If Uploader.Files. Count = 0 Then
Response.Write "File(s) not uploaded."
Else
' Loop through the uploaded files
For Each File In Uploader.Files. Items

' Check where the user wants to save the file
If Uploader.Form(" saveto") = "disk" Then
Which of the "If"-choices is "not working"?

' Save the file
File.SaveToDisk "E:\upload"
Has your website an ASP accessable E:\ ??
What is this File.SaveToDisk function ???

ElseIf Uploader.Form(" saveto") = "database" Then

dim connection
dim sSQL, sConnString

sSQL = "INSERT INTO MyUploadTable (filename, filesize,
contenttype)VAL UES('"&File.Fil eName&"','"&Fil e.FileSize&"',' "&File.Cont
entType&"')" sConnString="PR OVIDER=Microsof t.Jet.OLEDB.4.0 ;" & _
"Data Source=" & Server.MapPath( "emails.mdb ")
Has your current directory writing rights?
Set connection = Server.CreateOb ject("ADODB.Con nection")

connection.Open (sConnString)
connection.exec ute(sSQL)

response.write "The data was inserted successfully."
Connection.Clos e
Set Connection = Nothing
End If

' Output the file details to the browser
Response.Write "File Uploaded: " & File.FileName & "<br>"
Response.Write "Size: " & File.FileSize & " bytes<br>"
Response.Write "Type: " & File.ContentTyp e & "<br><br>"
Next
End If

%>


Programming is writing snd testing little titbits of code at a time
in your operating environment.

Wile you may be lucky to have a functioning code on your local
testmachine working imediately on the web real web server, as a rule you
will need to do this process of testing [again] on that real live machine
where the settings are often far different from the first.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jun 11 '06 #2

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

Similar topics

6
6317
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334, column 13: there is no attribute "SRC" <bgsound src="C:\My Documents\zingwent.mids"> You have used the attribute named above in your document, but...
5
2174
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows: Objectives The purpose of this assignment is to have you practice the design of object-oriented classes, including one or more of the following...
0
1829
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities, all dont work "Re:" need help "Re:need help"
9
2914
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with a device. The definition of the table is as follows: CREATE TABLE devicedata ( device_id int NOT NULL REFERENCES devices(id), -- id in the...
7
3291
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte buffer into the character pointer. The code looks like the following: #include <stdio.h> #include <stdlib.h> #include "stdafx.h" BOOL APIENTRY...
15
4578
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to communicate with a MySQL database table on a web server, from inside of my company's Access-VBA application. I know VBA pretty well but have never...
16
2515
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client uses IE to talk with a server. The user on the client (IE) sees an ASP net page containing a TextBox. He can write some text in this text box and...
8
2727
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only the sequence nos and it should be such that i can access it through the structure .plz help me .
0
3925
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need Inbox Reply from Craig Somerford <uscos@2barter.net> hide details 10:25 pm (3 minutes ago)
20
4240
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site is structured as an upside-down tree, and (if I remember correctly) never more than 4 levels. The site basically grew (like the creeping black...
0
7703
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7926
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. ...
1
7678
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...
0
6286
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...
0
3656
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...
0
3644
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2116
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1226
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
944
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...

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.