Multiple File Selection
Is there any way to select mutiple files from Client machine's drive for uploading?
View RepliesIs there any way to select mutiple files from Client machine's drive for uploading?
View RepliesIn my asp page i m using 5 dynamic comboboxes i.e one combo boxes gets loaded depending on selection from another combobox. all combo boxes have multiple selection property.
My problem is i am not able to do multiple selection by using ctrl or shift key. if i m using either of the keys even then it captures only first selection on which i have clicked.
if i continuesly do some selection say first 10 records without using any key then its working fine but if i want to do selection say 1,5,8 by using ctrl key then it is capturing only first selection. Code:
I have a list box containing:
Ford
Vauxhall
Nissan
Honda
Volvo
How can I select certain names and have them transferred to a text box ie.
if I click Ford, Honda, Volvo I want it to update the textback like [ Ford
Honda Volvo ] when I click each one (like in hotmail when your select email
addresses.
after a lot of searches to see if i can get such a code on the net, i've finally come to ask my questions here bcoz i can see bits of code here n there on net but not what i really want.
i have a form with a listbox(lstduty) on it. i have been able to populate it with data(dutyName)from table 'duty' from a sql server 2000 database.
now when a user makes multiple selection and click the 'add' button, i want to be able to add it to another table in the database as below: Code:
i was search on download multiple file at the same time and the answer i got is to zip these files my Question is :Is there sny way to unzip these file on client machine?
View Replies View RelatedI'm trying to make a form that allows the user to select multiple files from their computer, and then INSERTS those file names into an access database using ASP. I also don't want to have a seperate <input = file> tag for each one??? Is this possible?
View Replies View Relatedi trying to do a asp based multiple file upload form. i got an example coding to upload 4 file a once, but when i try to add another textfield and try to upload the 5 file at a time, i got an error message. Code:
View Replies View RelatedI am in need to upload multiple files.I am Using following asp code :
SCompanyCode = Request.QueryString("SCompanyCode")
Set upl = Server.CreateObject("SoftArtisans.FileUp")
upl.Path = Server.Mappath("Clients"&SCompanyCode)
arrFile1 = split(upl.Form("file1"),"")
filename1 = trim(arrFile1(ubound(arrFile1)))
arrFile2 = split(upl.Form("file2"),"")
filename2 = trim(arrFile2(ubound(arrFile2)))
Response.write filename1
Response.write filename2
if upl.Form("file1").TotalBytes > 0 then
upl.SaveAs filename1
end if
if upl.Form("file2").TotalBytes > 0 then
upl.SaveAs filename2
Can someone help me out in multiple file uploads.
I want the user to select multiple files. On selecting the listed files, he can
click on open and all the selected files should appear in a textbox. On clicking a
button upload, all the listed files should upload.
I have an ASP.NET Web application where I want users to specify browse/select multiple files in multiple folders on their local workstations.Upon submitting the form,I want to have server-side code to manipulate the files.This is something like writing an email with attachments via a web form
What is the best way to accomplish this?Are there some examples of how to browse/select files and pass them to the server-side code
i am able to do file download using the response object, where a dialog box will appear,
asking user whether they want to open,save or cancel.
it is possible to download multiple files at once. since it is stated that 1 file download per http request. i am lookinn at
http://www.motobit.com/tips/detpg_m...es-one-request/
where it show multiple file per http request. i don't quite understand it though.
is there any scripts available which can upload multiple files like some available java applets as my server does not support java so i have to use only asp
kindly suggest if there is any available i searched in this forums but just able to file aspsmart upload or aspupload , my server does support installation of dll so i cannot use these i need pure scripts which can help to upload mulitple file with interface.
Is it possible to download multiple files from a site into a single document, which can also be downloaded as a single file? E.g. files
1. a.doc
2. b.pdf
3. c.pdf
output like document.zip etc?
I currently need to allow users to download a series of Excel files from the intranet which were generated individually using ASP. Rather than have them click one link at a time to download only one file, I want to find out if it is possible to let them download the whole series of files with one link click.
The users are all on the LAN so bandwidth is not an issue. Furthermore, the total size of all the files is only 100kb.
For some reason, I am having trouble with this. I want to have a select statement, such as -
<%
Select Case Request("service")
Case "s"
<!-- #include file="includes/bottom_nav.inc" -->
Case "p"
<!-- #include file="includes/bottom_nav.inc" -->
Case "a"
<!-- #include file="includes/bottom_nav.inc" -->
End Select
%>
I know that is not the correct syntax for the include files.
I have a standard ASP page that appends to an xml page.
Currently if there is more than one person attempting to append to the same XML file at a time. One user will have the ability to append, and the other user will append nothing.
Is there a way to avoid this from happening? For example. Lets say the user opens up a cached version of the page then append to the actual file. For some reason I remember reading about something like that, but just can't recall.
I am doing a binaryWrite to allow users to download files. The problem
occurs if the file is too big. Some of the files i have are close to
100 megs. I read on msdn that if the data is greater than 4MB it is
advisable to break it up into multiple chunks Code:
I've got multiple pages on the same server that all have the same drop down
boxes in them. It is a list of all our facilities. Every time there is a
change, I have to change it on every page. They are in the format below. Is
there an easy way to store all that data in a text file so I only have to
update it one place?
<option value="fac 1">fac 1</option>
<option value="fac 2">fac 2</option>
<option value="fac 3">fac 3</option>
i want to do a voting, which let user select. how can i count the number of user vote?
n... how can i accumulate each slection and display a chart by percent?
example:
.apple
.beer
I have a web page where a user can select a location out of a possibility of 5. I also give them the option of seraching all 5.
However when I put this in it get rids of the drop down box and puts them all in an open box about 2 inches in length. Which isn't too bad but if I say had 20 locations it would take up half the page.
I have a form field called Streets that contains 'HIGH STREET,MAIN STREET'
I have a field in my access db called StreetName a single record would contain one street and I want to return all records that have a StreetName in the Streets field. How would I go about this?
I do not write the whole code.
I have a IF statement like the following.
if request.Form("UyeTipi") = 1 then
strsql=select ****
else if request.Form("UyeTipi") = 2 then
strsql2=select *****
this is the recordset
set objRecordset = objConnection.Execute(strSql)
With loop I want to display data either from "strsql1" or "strsql2"
I create table like the following with loop
Code:
I am working in an asp/Vb script environment.In a form I have 2 combo boxes.first is main criteria and second one is sub criteria.in the first combo I have made predefined enteris(the headers of the table)say a table is:emp and its headers are:empid,empname,L1manager,accounts,location etc.
on a change event of first combo,I want to fetch the details from the table.say if I selected Ename in first combo.the second combo should automatically fetch the listed Enames and vice versa.
My left frame contains a combo box which loads the selected record in the main frame.The combo box retrieves concatenated 3 columns from my db. E.g. ID, Firstname & Surname.
Because of this, it seems to blow out the size of the frame,thus ruining my nav system.Does anyone know how I can restrict the box width, but allow the drop down part to remain wide?
How do i select a completly random record from a database?
sql = select (random) from tbl, sort of thing.
I have searched through a lot of paging articles. But I have not found any specific recommendations for my issue. I have a large record set that I need to page through (1000 records). But on each page (100 records) I must be able to select some rows, add
some comment for each and sumarize them on-the fly.
if I page forward and backward, I still need to see before selected rows with comments and I can even deselect or edit some of them. Should I store all this information (selection, comment, price) in session variables or is there a better way?
I am working in an asp/Vb script environment. In a form I have 2 combo boxes. first is main criteria and second one is sub criteria. in the first combo I have made predefined enteris(the headers of the table) say a table is:emp and its headers are:empid,empname,L1manager,accounts,location etc.
on a change event of first combo,I want to fetch the details from the table. say if I selected Ename in first combo. the second combo should automatically fetch the listed Enames and vice versa.
My site is running on IIS5.0 hosted on win2k service pack 4 m/c. We are going to procure high end windows M/C . I seek your advice in selecting right os and version of IIS. My comp is a bit hesitant to migrate to .net too (I don’t know planning of comp in future).My requirement should be
1) Same Program should run on new server with minimum changes.
2) If required we can migrate to .net (although planning is not in near future and I even don’t know what is needed for that)
Your advice in this regard is highly appreciated. Also if you can explain in short about new feature in IIS6.0 (or upper version). Which version of IIS come along with Windows 2003 server, I really have very little knowledge in this field.
i am using frontpage ,ASP, and some javascript. how do you create a START-> ALL PROGRAMS selection option. you place the mouse over the "all programs" and you got all selection related to "all programs"
i want to do the same thing with data from a database. how do i do this?
I have this code the value thats stored in table is Yes in College_Assistance field
so i want to select the Yes radio button
but its not selecting
when i see he view source it doesnt say checked="true"
any idea why. Code:
I have a selection list of the 50 states that is not dynamically built. If &state=CA is in the query string i want the selection list to automatically select CA out of the selection list since that is what was in the querystring. Know what I mean?
View Replies View RelatedHas anyone used the UPS e-tools such as address verification and rate selection service? I'm trying to implement it on our site and I would just about kill to see some source code. It's a little above my coding level and I just can't seem to figure it out.
The documentation goes into a VB sample, but I dont think that is necessary since you can perform an HTTP POST and parse XML in an ASP page.
I am trying to show some stats. However I have four levels to choose from, which are shown as true/false. I want to count each entry by employee and categorize it only under the highest level achieved. One entry can have multiply Levels. Hope this make sense my mind is a little foggy today.
Here is the sql statement I am using. I have added the levels as or however I want to count each level but only the highest level achived. I don't know if it would be easier to do this in a SQL statement or in vb script. Code: