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
  • Content: Threads
  • Order by date
  1. 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...... ...
  2. 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") ...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. Everton1Blue

    Displaying an error?

    Hello I have lost my way a bit on this. I have a form here: Link If I complete all fields correctly the user is directed to a 'thank you' page and that works fine, but if the user omits the Name field, for example, a red error message says 'Please complete the Name field' like this: Not only...
  8. Everton1Blue

    How to display user error in form field

    Hello I have a small Web form Link that looks like this: When a user does not complete the form correctly, an error message appears on screen as follows: That's because there is not enough room to display the error. The best way, I think, of resolving this issue is to display the error...
  9. Everton1Blue

    QueryString query

    Hello If I have this: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load your_name.Text = Request.QueryString("your_name") & your_name.Text End Sub in my code behind form, and this on the main page: <div id="textPosition1">...
  10. Everton1Blue

    Email verification query

    Hello Can I ask please about email verification in my ASP.NET (VB.NET) project. I have a form with this in my contact form: <p><asp:Label ID="Email" runat="server" Text="Email"></asp:Label> <asp:TextBox ID="your_email" runat="server"></asp:TextBox></p><br /> <asp:RequiredFieldValidator...
  11. Everton1Blue

    Google reCaptcha problem

    Hello I have a Web form which sends without me checking the 'I'm not a Robot' box. I have Google's <script src='https://www.google.com/recaptcha/api.js'></script> between my <head> tags and <div class="g-recaptcha" data-sitekey="******></div> in the <form> tags. What is not right here...
  12. Everton1Blue

    URL redirection issue

    Hello How would I identify a URL redirection error that needs correcting in my code, please? I can't see anything in my Visual Studio code or when I press F12 online - the relevant page is here: www.dimadayoub.net/contact.aspx I have not come across this error before (server error 301?) and am...
  13. Everton1Blue

    Visual Studio 2013 connecting to MS Access db

    Hello I have the following my ASP.NET project. It's just a simple form that inserts form field data into a database. In my aspx.vb file I have: Imports here including: Imports System.Data.OleDb Partial Class Account_Register Inherits System.Web.UI.Page Protected Sub Dim myMDBConnection As...

Part and Inventory Search

Back
Top