Eit Profile
I get this error
Code:
Microsoft JET Database Engine error '80040e14'
Syntax error (missing operator) in query expression 'ID = , 1'.
/editprofile.asp, line 111
I get this error
Code:
Microsoft JET Database Engine error '80040e14'
Syntax error (missing operator) in query expression 'ID = , 1'.
/editprofile.asp, line 111
When creating a new profile, I want my ASP page to look at a Social Security Field that is being submitted and compare it to the database to see if that Social Security Number already exists. How can I do this? Can I create a filter in the database itselft?
View Replies View Relatedguys i am working on a profile page where there is a dropdown liste that contains all the countries in the world.How can i get this liste of countries?
View Replies View Relatedwould it go something like: viewmember.asp?=ID
I want to make this a link to this users profile:
Code:
<%=(rsReply2.Fields.Item("rsCommentby").Value)%>
after a member log in and he is redirected to the memberpage.as and there are a link to view his profile or details which is in the database in members table.
how can i view his details and he can make changes to it??? how many pages i have to do ? and the page which has his details should it be html with a form or should be asp page?
I have an ASP application that logs into Exchange server to send email. The
code looks like this:
Set objSession = CreateObject("MAPI.Session")
objSession.Logon "profileName"
strMsg = ".."
Set objMessage = objSession.Outbox.Messages.Add
objMessage.Subject = "Customer Comment"
objMessage.Text = strMsg
Set objRecip = objMessage.Recipients.Add
objRecip.Name = SendTo
objRecip.Type = 1 'CdoTo
objRecip.Resolve
objMessage.Send 'showDialog:=False
objSession.Logoff
This code worked fine when the server was WinNT / Exchange 2000, now the
server has been upgraded to Windows 2003 and Exchange 2003.
Exchange Server is running on the same machine as IIS. And the error
appears to happen when the Logon is attempted.
Any ideas as to what may have changed in Windows 2003 or Exchange 2003?
I want my site to show profile of registered users. But it should be of this format, like www.abc.com/username. But I do not want to create folder for each users. I want to display the user profile from a database and populate it in a display page according to the profile name typed in the address bar, after the site name.
View Replies View RelatedI want my site to show profile of registered users. But it should be of this format, like www.abc.com/username. But I do not want to create folder for each users.
I want to display the user profile from a database and populate it in a display page according to the profile name typed in the address bar, after the site name. It should be something like in Yahoo Profile.