<input type="file"> is something supported by your browser that lets it send a file from the local machine to an ASP page. If your browser supports uploading...
On this subject, does anyone know of an ASP unload script that would allow me to say block 5 files name and upload them all at once? I use PureAspUpload but...
SAFileUp Standard Edition allows for multiple file uploads via multiple input items on a page. Support for both classic ASP and ASP.Net comes in one package....
Sorry for such a basic question, but I'm not sure how to find the answer after searching google: I have a set of code that takes an address string and finds...
This depends on your input values and how you're determining what each section of the value means. If my address is: 123 A Street 123 5th Street 123 West...
Costanzo, Ray
rcostanzo@...
Feb 2, 2004 6:51 pm
8528
... each ... Oops. Sorry for the confusion. I'm not asking how to get the field values...I've already done that with code. I'm asking if it's possible to...
Hi Chris, ... Yes. You setup your function as follows: '// ======================================================== function SplitAddress(sInput, sOut1, sOut2,...
You sure can. Functions can actually modify the values of the parameter variables so if you pass the values as such: Function AddressParser(strAddress, Num,...
I see. Since a function can only return one value, I'd say your options are to either have the function (actually a sub) assign values to variables with a...
Costanzo, Ray
rcostanzo@...
Feb 2, 2004 8:20 pm
8532
... I second this suggestion, in lieu of passing variables by reference as output parameters. VBScript does nothing to inform the caller of how a function is...
Manas, Can you explain in more detail what types of bugs using output parameters can cause? Are you talking about low level bugs? (e.g. memory allocation...
Hi Matías, ... Typically, passing variables by reference isn't much different (in code) from passing them by value in VBScript, so if the task of maintaining...
Good points. I also often opt for maintainability over optimization. If a given function(or procedure, or include) is not a perfect black box, I write a...
Hi, Is there a way that I can gain access to files behind an area secured by password from asp code? I would like to put some configuration type file in a...
Depends on how you implemented your security. For example, if you have a login to the secure area, you could check on every page to ensure the user has proper...
First, thanks to Ray, Shawn, Matias, and Manas for the help on the other question... Anyone have a good Soundex Script? If not, suggestions for this: I'm...
Sounds like a job for a Regular Expression to me - try www.regexlib.com, they might have one ready-made to do that. Dan Visit www.diado.com for free...
Dear Friends: I have created a form that has multiple submit buttons. Each button post the same value that is then evaluated by the receiving form and execute...
You will have to create a JavaScript function. Instead of having submit as the type of the button: make the type a button, then call a JavaScript function...
You ~can~ use client-side code to change/set the form action in the onclick event of the submit buttons, or you can have your ASP code determine which button...
Costanzo, Ray
rcostanzo@...
Feb 3, 2004 7:57 pm
8543
Thank you very much Ray!!! ... reason ... button ... and ... ********************************************************************** ... for the personal and...
Hi I would appreciate if someone answer. I am new in ASP. Follwoing code (from VBScript to search Access) gives an error: strExists.Find "name = 'Name hard...
Strings aren't objects with methods in vbscript. They are in jscript, but there is no .Find method. I'm only assuming that strExists is a string variable,...
Costanzo, Ray
rcostanzo@...
Feb 3, 2004 9:33 pm
8546
I have used the second option in several situations. It works fine. And no Jscript reuired. The form page is has one form with several submit buttons. If you ...
FWIW, I recently redid a page on my company's intranet that had multiple submit buttons and made it so there was just one submit button and the user has to now...
Hey All, I'm new to ASP. Have a background in HTML, JavaScript, and CSS. What I'm wanting to do is create a page for my friends and family that is similar to...
Hey One, I do not mean this to be rude or anything like that at all; I promise. You should start by reading this article. (Before you click the link, be aware...
hmmmm, i don't know whether i should take that article as a "go away dumbass" or not. lol. let me be a bit more specific..... i know how to use ASPUpload to...