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......
...
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")
...
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...
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...
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...
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...
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...
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...
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">...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.