Hello
I have 2 PCs, an older one (we will call this PC A) using W98 and with an Internet connection, and another (which we will call PC B),using WindowsXP connected to a printer.
I want to be able to connect to the Internet from PC B via PC A, and to be able to print from PC A via PC B. Sorry...
Many thanks for your explanations. I have a better idea of it now. I tend to think that the shell is a sort of case with the engine room inside it, and if you are the one carrying the case, it esssentially give you ownership of its contents.
Thanks again
Hatter
Hello
I have a 'simple' question about the Shell. What exactly is it? What does it do? Where does it fit in in the general architectural scheme of things in Windows (98), and
why do hackers always talk about it?
Many thanks
Hatter
Hello
I have a small VBScript which gives me the date at the top of my page. It is contained in a table which holds the font values, and work well.
However, because the <BODY> tag begins way down the page, I get a number of HTML errors (because the <TABLE> etc actually begins before the <BODY>...
Hello and many thanks to you all for your constructive comments. At least I know you have thought about the site and suggested ways of how I may improve it.
I agree with dwarfthrower that the home page "gives no real indication of your capabilities". It does just seem like marketing...
Hello
I am writing to ask if any Tek-Tip enthusiasts would mind having a look at a site I am working on. All criticisms welcome!
http://www.grafik1.net
Thanks in anticipation!
Hatter
Hello Chopstik
Thanks for your suggestion.
It worked! I wasn't sure that it would, because I wasn't sure that the form values were going to be passed to the 'thanks.asp' page. Anyway, they were, so thanks again!
Best wishes
hatter
Hello
I'm hoping somebody can help me with this query!
I have a form whose server-side vaidates the form fields before sending the visitor to a personalised 'Thank you' page.
To do this, I use:
Server.Transfer "thanks.asp"
What I would now like to do is to store whatever the...
doesn't work either, Ralphtrent.
I tried:
re.Pattern = "^\w+@\w+\.\w+"
results = re.Test(email)
if results then
errorArray(1) = "False"
response.redirect "thanks.asp"
else
errorArray(1) = "True"
ErrorMsg = ErrorMsg & "Please type in a valid email...
Hello ralphtrent
Many thanks for your message.
I think I might be getting there with your help!
OK, I now have a form.asp page and a thanks.asp page.
The code above holds the form and its different elements.
What I have noticed is that if I have this included in the code above:
<form...
Hello RalphTrent
Thank you for your message.
I know form field validation can be done with JavaScript, and I can try your suggestion (I've saved your post) rather than the form be submitted without being validated.
However, I would prefer the server-side script. It seems cleaner, somehow...
...ErrorMsg = ""
dim re, results
set re = New RegExp
'Full Name
re.Pattern = "^[^0-9\/><\.,\\!\^\$\*\+\?@#%&\(\);:\[\]\{\}=""']+$"
re.Global = True
re.IgnoreCase = True
results = re.Test(fullname)
if results then
errorArray(0) = "False"
else...
Hello
Thank you for your replies.
I have removed:
<form action="thanks" method="POST" action="thanks.asp" onSubmit="return ValidateEmail(document.thanks.email.value);window.close()"
which is what I had behind my form, and instead have placed:
<form...
Hello
I have a form which, when completed, shows a Thank You personalised page.
The script which helps to do that is:
<form name="thanks" method="POST" action="thanks.asp" etc
I now wish to store the contents of the form into a database, and I need to use...
You've given me great help, Veep.
I have done this:
email = request.form("email")%> remove this one
but kept the other <% because it's part of CDONTS, and I have removed the , before the ) right bracket.
Tomorrow I'll work on your:
for each objItem in request.form()...
...request.form("message")
ErrorMsg = ""
dim re
set re = New RegExp
'Full Name
re.Pattern = "^[^0-9\/><\.,\\!\^\$\*\+\?@#%&\(\);:\[\]\{\}=""']+$"
re.Global = True
re.IgnoreCase = True
errorArray(0) = re.Test(fullname)
if errorArray(0)...
No, when I remove the 2 %> (after email and message), I get an error message:
Microsoft VBScript compilation error '800a0400'
Expected statement
/Valy.asp, line 209
<%
^
Cheers
hatter
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.