Finding And Renaming Image.

Heres what im trying to do, I have mssql databse full of about 15,000 item ID codes. For Example of the ID Code:

The first 2 sometimes 4 letters represents the distributor name, the numbers are the item number and BX for example means Box.

DJ3726
DJ3847BX
DJ3743CD
PD2374
PD2334
PD4334BX

And I have about 15,000 images from my distributrs that mostly match up to the actual ID number, but still a lot dont match up because of a small extra letter like BX Or somehting like that.

So what ive done was write a code that Splits out the Manufature code for example DJ from DJ3726BX, and also the same for the item ID 3726 from DJ3726BX, So when I put thos to together I get just the manufature name and ID code instead of the extra crap I dont need.

And now I take just the Manufacutre name and ID and looping through my database and all of the (images via File Scripting Object).

Then I check to see if the manufacure code and ID is in the item name. For Example

Check if DJ74637
IS In: DJ74637BX.GIF

Then if it finds a match it gos and renames the gif for me. And it loops through untill its done.

My problem is that it just doesnt work, no errors no anything it just doesnt pick up any images when I can visualy go through my self and find some matchs.

Heres my code that I came up with so far ....

View Replies


ADVERTISEMENT

Renaming .txt To .asp

i am trying to get around having to use querystrings, by having all my category id's made into folders, and all my products made into asp pages. so www.domain.com/2/product_1.asp

i know how to make the asp page and write it to a file but then how do i change the extension from .txt to .asp to make this still a dynamic page but with no need to request a product number.

View Replies View Related

Renaming Files

I am trying to find out how to rename a file. What I want is to take the orginal filename and put todays date and time in.

So something.txt would become 2008/01/17/0918something.txt

I have the following but it states "Path not found"

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Dim fso, newName

set fso = CreateObject("Scripting.FileSystemObject")
newName = "c:"& now() & "something.txt"
fso.MoveFile "c:something.txt", newName
set fso = Nothing
%>

View Replies View Related

How Can I Renaming A File

How can I rename a file with aspupload or FSO before upload?
I looked for in documentation of these products, but I could not find
anything yet

View Replies View Related

Renaming A File

Is it possible to rename a file which a user uploads to the server?

I have a form which allows users to upload an image to a folder on the web
server. This works fine.

The form they submit takes their firstname, surname and the file.

However, I want the file to automatically be renamed to
firstname_surname.jpg (taking their firtname and surname from the form they
are submitting).

View Replies View Related

Renaming Method

I'm looking for a renaming method for folder objects.I have an ASP (JScript) application that I'm creating that acts as a document library. Users can upload files, create folders, etc.

Most places I go to basically have: copy, delete, move, create textfile as the only methods for the folder object - NOTHING about renaming.

View Replies View Related

Filename Renaming In ASP

am trying to upload a file and at the time try to rename the file to autogenerated name.

View Replies View Related

Renaming After Upload

ok i have the uploads working but when i try to rename with 'MoveFile' nothing seems to happen. this is my code:

View Replies View Related

How To Uploading Images And Renaming Then

i want to give a option to client that they can upload there logo/images. how i can upload the images and when some upload the images i want to rename the images as the user name of the client or some autonumber. how i can rename the images.

View Replies View Related

Renaming Jpg Files On Upload

I'm basically doing the same thing except I have to upload the images from one web app and then load them from another so I've set up a virtual directory in IIS that points to the physical location where the files are.

Here is the relevant codecheck to see if a file existsMake sure the file type is a jpegMake sure the file is an acceptable sizeGenerate a filename based on the current date and timeSave the file to a local directory that a virtual directory points to on the web serverTry to display the image in an asp:image control by loading it from the webserver

Code:....

View Replies View Related

Renaming The Alert Message Box?

my page uses a javascript function which alerts users like this:

alert("An alert message");

how do I rename the message box in which this appears?

View Replies View Related

Renaming Variables Problem

i have a field that i'm extracting from a database, but when i take it out i want to rename it depending on what it is called. for example: Code:

View Replies View Related

Finding Age

I have a database with date of births stored dd/mm/yyyy (english dating
system) and =date() returns a date in the same format in my server.
how do i find the persons age using these two pieces of date.

View Replies View Related

Finding Word

i want to make a program to find out and highlight a particular word on the browser using ASP and javascript.

View Replies View Related

Finding A Path

Is there something similar to PHP's php_info command to tell me all about the server? I need to find the actual path where the site resides.

View Replies View Related

Finding The Webserver Name

I need to create a new application in our test server. I am using VID for
that purpose. In order to set up the project in VID, it asks me 'which server
you want to use'. However, I do not have the name of the test server. Is
there any way to configure the name of the server here? I have full rights to
the server directory and is mapped on my machine as G drive.

View Replies View Related

Here Is A Function For Finding Age

Here is a function where you don't have to worry about the leap year.

You will have to still be aware of time differences between you and
the server, and correct your data before entering it into the
function. And of course time zones, yada yada ....

BUT I think that most people using this will just want to say if today
is there bday than they are their new age. Code:

View Replies View Related

Finding Version

How can I programatically ascertain what version of ASP my ISP has installed ?

View Replies View Related

Percentages Finding Of

I need help to find percentages, because I missed out on a lot of basic math education, I need it to be real clear step by step instruction for instance how would I go about finding 24 out of 32 one step at a time?

View Replies View Related

Finding A Port

i know how to find the available server names, how can i find the ports?

View Replies View Related

Finding A Hotel

I am developing a hotel finder solution in Canada. When some one enters a Postal code, it should be able to display the hotels in 5 KM radius. (With nearer PIN numbers?) I am deleloping this application using ASP, and is there anyway I can such searches?

View Replies View Related

Finding The Space

I trying to find the memory occupied by the object in RAM, For Example:

Set ObjTest = Server.CreateObject("ADODB.RecordSet")

I need the space occupied by the ObjTest in RAM. Is it possible ?

View Replies View Related

Finding Max Value In Database

I am trying to find total number of parts in the database for a user by using the COUNT function:

max = HelpDesk.Execute("SELECT count(PartRef) AS 'maximum' FROM MISC_PartInfo WHERE Username = '" username "'")

but when i try to output the result by:

Response.Write max("maximum")

I get the error:

Item cannot be found in the collection corresponding to the requested name or ordinal./Intranet/test/PartInfo.asp, line 82

View Replies View Related

Finding Every Monday

if anyone can point me in the right direction or has code on this. i'm trying to display the number of occruances of an event during each week of a given month. basically, i'm looking for code that finds every monday of a given month.

View Replies View Related

Finding No. Of Pages

one cant do a straight division because if i have 20 per page and 22 records, that's two pages. best i've come up with so far is

Code:

iPageCount = fix(iNumRecords / iPageSize)

if( iNumRecords mod iPageSize > 0 )then
iPageCount = iPageCount + 1
end if

anyone managed it better? is there a function like fix that forces a round up?

View Replies View Related

Finding Maximum Value

How do I find the maximum value of a recordset column? I'd rather do it this way than open a new recordset with Max(column).

View Replies View Related

Finding Element In Array

I'm creating an array from the querystring, then I want to find if something is in that array..

url = quiz.asp?done=6|3|4

done = Request.QueryString("done")

myArray = Split(done,"|")

For Each i In myArray
If myArray(i) = x Then
do something
End If
Next
I keep getting a "subscript out of range error"

View Replies View Related

Finding Out The Number Of Requests

I have a form. When I do action="POST" I can see the changes done by looking at ---- for example request("MyBox") 

Where MyBox is a dropdown box and by doing request("MyBox") I get the selected value.

Is there a way I can get the number of requests done? (i.e if I had 3 dropdown boxes then I get 3).

Also is there a way to get a list of the names of all the requests (i.e if I had 3 dropdown boxes then I get MyBox1 MyBox2 MyBox3)

View Replies View Related

Finding Newest Record

I have a section of code that is supposed to search through a DB comparing a field of when the record was added. Its supposed to find the latest record and move to that record so it can process some other code:

View Replies View Related

Finding Current Directory?

How can I find out the full directory path (i.e. c:path ofile) of a file? I'm logged into a server and the of course, I have an FTP directory root, but I need to know the absolute path.

View Replies View Related

Problem Finding ID In Database

I have this page that gets a list of catagories from the database and displays them with there id numbers in a select box like this

<select name="catagories">
<option value="1">Catagory 1</option>
<option value="2">Catagory 2</option>
</select>

Then I post it to another page to process the information. This is written in asp and vbscript.

I open a dsnless adodb connection to the database then use it to create a recordset for the catagories table.

the problem is when I check the idnumbers in the database with the one posted selected by the user in the previous page none of them match. Code:

View Replies View Related

Finding Directory Level

I am using Request.ServerVariables("SCRIPT_NAME") to get the extention from the url and need to know if I am in the root or down a directory. i have two folders, one called 'local' and one called 'group'

View Replies View Related

ASP Not Finding File That Do Exist!

I'm using vbscript in ASP to loop through and rename the files passed to it in a form. When I output the text to the screen of the filenames etc it's all working fine.

However, when I try to get the rename code working, if I select more than one, ASP tells me the 2nd/3rd etc file does not exist. The first one always renames ok.

I presume this is something to do with the Server.MapPath, but what exactly I have no idea! My code is below, can anyone see what I'm doing wrong? Code:

View Replies View Related







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