Search the web
Sign In
New User? Sign Up
active-server-pages · Active Server Pages Developers' List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 8522 - 8551 of 12403   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8522
<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...
Adrian Forbes - ITD
aidy_forbes
Offline Send Email
Feb 2, 2004
9:52 am
8523
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...
Cadieux.Tim@...
tim_cadieux
Offline Send Email
Feb 2, 2004
3:29 pm
8524
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....
bobfilipiak
Offline Send Email
Feb 2, 2004
3:59 pm
8525
Excellent, thx Tim ... From: BobFilipiak [mailto:bobfilipiak@...] Sent: February 2, 2004 10:58 AM To: active-server-pages@yahoogroups.com Subject:...
Cadieux.Tim@...
tim_cadieux
Offline Send Email
Feb 2, 2004
4:04 pm
8526
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...
Chris Hagwood
chris_hagwood
Offline Send Email
Feb 2, 2004
6:40 pm
8527
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@...
Send Email
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...
Chris Hagwood
chris_hagwood
Offline Send Email
Feb 2, 2004
7:29 pm
8529
Hi Chris, ... Yes. You setup your function as follows: '// ======================================================== function SplitAddress(sInput, sOut1, sOut2,...
Shawn K. Hall
shawn_ra
Online Now Send Email
Feb 2, 2004
8:18 pm
8530
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,...
Matías Niño L...
man95002
Online Now Send Email
Feb 2, 2004
8:19 pm
8531
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@...
Send Email
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 Tungare
ManasTungare
Offline Send Email
Feb 2, 2004
8:44 pm
8533
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...
Matías Niño L...
man95002
Online Now Send Email
Feb 3, 2004
3:19 am
8534
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...
Manas Tungare
ManasTungare
Offline Send Email
Feb 3, 2004
3:39 am
8535
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...
Matías Niño Lis...
man95002
Online Now Send Email
Feb 3, 2004
5:36 am
8536
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...
VBCoder
ivbcoder
Offline Send Email
Feb 3, 2004
1:24 pm
8537
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...
Mark E
meckeard2000
Offline Send Email
Feb 3, 2004
2:36 pm
8538
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...
Chris Hagwood
chris_hagwood
Offline Send Email
Feb 3, 2004
4:37 pm
8539
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...
Powderhill, Daniel
danaspelite
Offline Send Email
Feb 3, 2004
4:40 pm
8540
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...
Arnnie Martinez
arnniemartinez
Offline Send Email
Feb 3, 2004
7:10 pm
8541
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...
Kim and Andy Mills
historynut13
Offline Send Email
Feb 3, 2004
7:46 pm
8542
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@...
Send Email
Feb 3, 2004
7:57 pm
8543
Thank you very much Ray!!! ... reason ... button ... and ... ********************************************************************** ... for the personal and...
Arnnie Martinez
arnniemartinez
Offline Send Email
Feb 3, 2004
8:34 pm
8544
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...
Salem Ahmed Bashwar
salembashwar
Offline Send Email
Feb 3, 2004
9:25 pm
8545
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@...
Send Email
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 ...
p c
pcjr10
Offline Send Email
Feb 3, 2004
11:19 pm
8547
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...
Ray Costanzo
ray_at_place
Offline Send Email
Feb 4, 2004
4:58 am
8548
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...
mygroups
edz21
Offline Send Email
Feb 4, 2004
5:09 am
8549
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...
Ray Costanzo
ray_at_place
Offline Send Email
Feb 4, 2004
5:17 am
8550
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...
mygroups
edz21
Offline Send Email
Feb 4, 2004
5:31 am
8551
... From: "mygroups" <yahoogroups@...> ... LOL!!!!! To me, that article means, "I'm a stupid butthead that had a real hard time learning...
Lil Peck
ksquarterhorses
Offline Send Email
Feb 4, 2004
8:21 am
Messages 8522 - 8551 of 12403   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help