Usernames/passwords

B

Becky

Is there a way to set username fields value equal to two
other field values? I know that if I was using a form in
Access I could have txtusername = txtFname and txtZip but
I am getting the information from ASP. Can the database do
it directly or do I need to look at a VBScript or
JavaScript function?
 
M

Michel Walsh

Hi,


SELECT (FirstName & " " & LastName) As FullName FROM somewhere WHERE
something



with Jet; with MS SQL Server, use + rather than &.



Hoping it may help,
Vanderghast, Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top