Search the web
Sign In
New User? Sign Up
AspClassicAnyQuestionIsOk
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 8277 - 8306 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8277
This is how I finally Did It As every one knows there is no control on user closing their browser but we definetly have control on users who are online on our...
hemant
hemblast
Offline Send Email
Jun 5, 2008
7:15 am
8278
How do you use an input mask in a text box (for a telephone number)? Also, (as if I knew how to do it in Javascript) can you combine Javascript and VBScript on...
Allen J. Bennett
bigbaud2000
Offline Send Email
Jun 16, 2008
5:47 am
8279
You can use the onkeyup event on a input control This is an example with the on key down event: http://bytes.com/forum/thread149696.html Van:...
Mischa Kroon
aemca_san
Offline Send Email
Jun 16, 2008
11:21 am
8280
To add to Mischa's response: you can use JavaScript and VBScript together on the same page. You just have to be more specific about which one is being used...
Peter Brunone
peter_brunone
Offline Send Email
Jun 16, 2008
2:03 pm
8281
Also worth a note, if a page fires up two scripting engines, it's performance will suffer, so, if there's traffic on the page it's best to translate to one...
mallard
ttmallard
Offline Send Email
Jun 16, 2008
3:45 pm
8282
i want to setup a remote server to house my database. am currently running an ASP.net application on my local host, though i have access to it via internet but...
Sheriff Shittu
skima4real2
Offline Send Email
Jun 17, 2008
3:58 am
8283
Database replication can be done there are a lot of ways of doing it. Log shipping is the least heavy option. Hot replication is very heavy, this will mirror...
Mischa Kroon
aemca_san
Offline Send Email
Jun 17, 2008
10:20 am
8284
Hi All, Back again with a new project and a new problem. This time Im creating a forum site and I've created all the pages where the forum thread will be shown...
javediq_143
Offline Send Email
Jun 20, 2008
3:49 pm
8285
It seems that with all the free options (phpBB comes to mind), you wouldn't really need to write something like this. This may be overkill -- and the purists...
Peter Brunone
peter_brunone
Offline Send Email
Jun 20, 2008
5:16 pm
8286
I am getting the following error, and I am not sure why: Microsoft JET Database Engine error '80040e10' No value given for one or more required parameters. ...
Darth Mikey D
darth_mikeyd
Online Now Send Email
Jun 29, 2008
3:27 am
8287
... you forgot the surrounding ' needs to be q="'" sql = "select * from users where users=" & q & username & q you are better off doing response.write sql than...
Charles Carroll
charlesmarkc...
Offline Send Email
Jun 29, 2008
12:37 pm
8288
Thanks for the response to my last question, it worked great. Now, I have another question. I need to generate a random line of characters for creating a...
Darth Mikey D
darth_mikeyd
Online Now Send Email
Jun 29, 2008
8:41 pm
8289
Also, if "users" is the name of the table *and* the field, the query engine might be a trifle confused. I suggest changing your database design so that sort...
Peter Brunone
peter_brunone
Offline Send Email
Jun 30, 2008
2:30 pm
8290
How about System.Random? You can use the .Next method and feed it a maximum, a min and max, or nothing at all. If you limit the min/max to the proper unicode...
Peter Brunone
peter_brunone
Offline Send Email
Jun 30, 2008
4:06 pm
8291
Oops. Thought this was the AspNet list. Google "VBScript random" (without quotes) and you'll get the necessary syntax to generate random numbers. Then the...
Peter Brunone
peter_brunone
Offline Send Email
Jun 30, 2008
4:08 pm
8292
Thanks to everyone for their previous responses. Now I have 2 more questions. 1. I want to have some textboxes on my site that are hidden until someone chooses...
Darth Mikey D
darth_mikeyd
Online Now Send Email
Jul 5, 2008
5:07 pm
8293
1. Best way to do this is with javascript. Use the onclick event of a radiobutton to show / hide things. You can use jquery (jquery.com) for some easy...
Mischa Kroon
aemca_san
Offline Send Email
Jul 6, 2008
12:23 pm
8294
I have been searching for the error, and have found plenty of suggestions but nothing that works. The problem seems to be with just sending from any address...
Darth Mikey D
darth_mikeyd
Online Now Send Email
Jul 6, 2008
4:10 pm
8295
Are there any special characters in the email address ? Silly hack would be to just replace comcast.net with comcast.com if both work. Van:...
Mischa Kroon
aemca_san
Offline Send Email
Jul 6, 2008
7:43 pm
8296
Thanks for the responses. I figured it out. I had to configure it so that the .from looks like this: Mike <any@...> No idea why, but who knows. Just...
Darth Mikey D
darth_mikeyd
Online Now Send Email
Jul 6, 2008
7:47 pm
8297
I use Classic ASp on my website - www.ProBowlUK.co.uk - to provide msAccess databases. I will be re-writing the layout of the website in CSS instead of tables....
Bob Sharp
bobsharp_uk
Offline Send Email
Jul 7, 2008
2:11 am
8298
Why not go with asp.net instead, which is a more advanced platform. If you already know asp go with that. If you want to learn something else then go with...
Mischa Kroon
aemca_san
Offline Send Email
Jul 7, 2008
2:19 pm
8299
Hi All, Could any one help me in this where I want to extract first N words, say 5, from a string. Below is what Im able to write: <% Dim str str = "Sarah says...
javediq_143
Offline Send Email
Jul 7, 2008
4:07 pm
8300
I think you should go with something like: . .Pattern = "(\w)" . For i = 1 to 5 Response.write Expressionmatch[i].value Next . Van:...
Mischa Kroon
aemca_san
Offline Send Email
Jul 7, 2008
8:01 pm
8301
Hi All, Could any one help me in this. I want to store user's text in mysql database. The text may contain only these special chars like ` ' ' " ... ? I've...
javediq_143
Offline Send Email
Jul 9, 2008
1:20 pm
8302
Hi Javed, What about using the HtmlEncode function on those strings when writing them into links? Cheers, Peter ... [Non-text portions of this message have...
Peter Brunone
peter_brunone
Offline Send Email
Jul 9, 2008
2:13 pm
8303
You're probably hitting a mail server that uses a blacklisting service. Some of the big providers get labeled as "spam from" domains since they're well-known...
Peter Brunone
peter_brunone
Offline Send Email
Jul 9, 2008
3:03 pm
8304
For links use: urlencode not htmlencode. Van: AspClassicAnyQuestionIsOk@yahoogroups.com [mailto:AspClassicAnyQuestionIsOk@yahoogroups.com] Namens Peter Brunone...
Mischa Kroon
aemca_san
Offline Send Email
Jul 9, 2008
3:14 pm
8305
True -- shouldn't have stated it that way -- but the problem is manifesting itself as a Javascript error, and the only Javascript is for the window.status...
Peter Brunone
peter_brunone
Offline Send Email
Jul 9, 2008
3:16 pm
8306
Right, a single quote will blow that if one is in the string being displayed on the status bar ... so do a replace on the window.status.value to handle these. ...
mallard
ttmallard
Offline Send Email
Jul 9, 2008
3:48 pm
Messages 8277 - 8306 of 8655   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