Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Everton1Blue
  • Order by date
  1. Everton1Blue

    Reserved word?

    Hello jbenson001 The error goes if the ,conn) at the end is removed. Thanks for your help.
  2. Everton1Blue

    Reserved word?

    Yes Dim Sql As String = "UPDATE university SET uniqueCode='',password=@password WHERE uniqueCode=@uniqueCode and (strEmail=@strEmail)", conn) BC30205: End of statement expected after that final bracket. I will put password between [] Thanks
  3. Everton1Blue

    Reserved word?

    Thanks jbenson001 I was thinking of password here, sorry: Link It is an Access DB that I have, so I would need to replace that SQL, wouldn't I? I am getting an error on that line: Dim Sql As String = "UPDATE university SET uniqueCode='',password=@password WHERE uniqueCode=@uniqueCode and...
  4. Everton1Blue

    Reserved word?

    Hello I know that 'password' is a reserved word and needs to go in square brackets, as in [password], but where do those square brackets go in something like this, please: Dim Sql As String = "UPDATE university SET uniqueCode='',password=@password WHERE...... ...
  5. Everton1Blue

    Question about SMTP

    Hello Dashley I haven't tried this out yet (I have had to adapt your code a little to the syntax I was using), but I think I have tidied up the confusion with Webmaster email and user email), so I now have: Dim myMessage As New MailMessage Dim Smtpserver As New SmtpClient Dim strEmailValue As...
  6. Everton1Blue

    Question about SMTP

    Hello Dashley Thanks for your message. I will try the code you kindly posted a little later today and post back soon! Thanks again. Blue
  7. Everton1Blue

    Question about SMTP

    Hello jBenson001 Thank you for your reply. myMessage looks like this: Dim myMessage As New MailMessage Dim Smtpserver As New SmtpClient Dim strEmailValue As String Dim Message As String = "yourmessage" 'Request.Form - extract data from form...
  8. Everton1Blue

    Question about SMTP

    Hello My SMTP code includes: Dim strEmailValue As String Dim Message As String = "yourmessage" 'Request.Form - extract data from form field Dim youremail As String = Request.Form("strEmailValue") Dim yourmessage As String = Request.Form("your_message") ...
  9. Everton1Blue

    Password reset question

    Many thanks for your reply, JRB-Bldr I take it then that the server automatically creates that link and something like SMTP posts it to the user? Good idea about looking at one of my own emails that contains a link and then Open the Source of the email. Thanks again!
  10. Everton1Blue

    Password reset question

    Hello Can I ask about the logic behind a request for a password reset where a user has forgotten his password? These passwords will eventually be hashed/salted. The user completes a field requesting his email address. The code checks that he exists in the database. If not, an onscreen error...
  11. Everton1Blue

    Welcome message error

    This is resolved now, thanks.
  12. Everton1Blue

    Welcome message error

    Hello I have a Web page here, but instead of the welcome message greeting the user's email, I have: strEmailValue is the user's email address (the variable) strEmail is the email column in my database strEmailTextBox is the ID of the email form field What is the reason, please, why I get...
  13. Everton1Blue

    BC30269: 'Protected Sub btnLogin_Click error

    'The remember me code should go in the block that successfully logs in the user - just before the Response.Redirect call'. That sounds logical now that you point it out. I will do that, and get rid of the second button. OK, I will subscribe to the ASP.NET room here. Thanks again
  14. Everton1Blue

    BC30269: 'Protected Sub btnLogin_Click error

    Andrzejek Visual Studio (ASP.NET) uses both C# and VB.NET.
  15. Everton1Blue

    BC30269: 'Protected Sub btnLogin_Click error

    Thanks for getting back to me, Borvik. One sub relates to a user logging on via a login form so the code will scrutinise the database to check that he exists as a registrant. This code (I am sure there are errors with it as I have not done a login form before) is: Protected Sub...
  16. Everton1Blue

    BC30269: 'Protected Sub btnLogin_Click error

    Hello I am getting the following error: BC30269: 'Protected Sub btnLogin_Click(sender As Object, e As EventArgs) 'has multiple definitions with identical signatures'. I take it that the error refers to the fact that I use Protected Sub btnLogin_Click(ByVal sender As Object, ByVal e As...
  17. Everton1Blue

    Error: Reference to a non-shared member requires an object reference.

    The problem was not 'ConnectionString' as such, but the line above it. The error disappeared when I used: Dim ConnectionString As String = "Provider=Microsoft.Jet.OleDb.4.0; Data Source=|DataDirectory|students.mdb;" Dim conn As New OleDbConnection(ConnectionString) That is, I had not...
  18. Everton1Blue

    Error: Reference to a non-shared member requires an object reference.

    Hello I am trying to create a log-in page (MS Access) for the first time, and I am getting this error (among others!): Compilation Error: BC30469: Reference to a non-shared member requires an object reference. The error (blue underline) specifically refers to 'ConnectionString'. Aren't I...
  19. Everton1Blue

    Displaying an error?

    Thank you Jebenson. The JS route sounds laborious. What about .skin?

Part and Inventory Search

Back
Top