Hi all,

I am using ASP with vbscript on IIS.

I have a page that I am using for order entry. When the first field
(member id) is entered into or when the cursor leaves it, I am trying to
auto fill the name fields.

I can do this in Visual Basic with a LostFocus event, but I cannot see
how to do this in ASP/VBS.

Thanks in advance for your help.

George

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Re: Auto validation by joker

joker
Wed Aug 18 14:30:09 CDT 2004

That would be actually the JavaScript onBlur event or the onChange event.

Both of which are from JavaScript & thus should be talked about in a
different news group such as microsoft.public.scripting.jscript since
they talk about Microsoft's version of JavaScript called Jscript there.

There isn't a way to do that without at least some client side
scripting. Also you may want to either do frames or a reload of the
entire page after entering the data. Since that is going to be the only
way the data will be available.

George wrote:

> Hi all,
>
> I am using ASP with vbscript on IIS.
>
> I have a page that I am using for order entry. When the first field
> (member id) is entered into or when the cursor leaves it, I am trying to
> auto fill the name fields.
>
> I can do this in Visual Basic with a LostFocus event, but I cannot see
> how to do this in ASP/VBS.
>
> Thanks in advance for your help.
>
> George
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!