Problem

  • Thread starter Thread starter Apostolis K.
  • Start date Start date
A

Apostolis K.

Hallo All

I am new to ASP.NET and I am learning it followed by a book that doesn't
help me a lot.

My first exersize is to make an ASP.NET page in which the user will enter a
username and a password. When the submit button is pressed, a message will
appear in a second text box to verify if the username and password is
correct or not.

It looks prety simple, however i couldn't manage it. I would very appreciate
it if someone could post the code here.

Apostolis


PS. I use VBScript.NET for building ASP.NET Pages.
 
If you create a blank web application in Visual Studio, you can drag and
drop some textbox controls and a button control onto the form.
Then, double-click on the button to be taken to the OnClick event for the
button.

Then you can add code such as the following to the event (modified
accordingly to whatever you named your textboxes:
TextBox2.Text = "Your Message"

HTH,
Chris
--------------------
 
Back
Top