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...
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...
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...
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...
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...
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...
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...
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...
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. ...
... 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...
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...
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...
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...
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...
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...
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...
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...
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...
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....
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...
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...
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...
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...
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...
For links use: urlencode not htmlencode. Van: AspClassicAnyQuestionIsOk@yahoogroups.com [mailto:AspClassicAnyQuestionIsOk@yahoogroups.com] Namens Peter Brunone...
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...
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. ...