asp.net text box q...

  • Started
  • Last post
  • 1 Response
  • atomica

    Alright, I'm trying to setup a form to do basically the same thing as the newstoday login. Theres three ASP.net inputs and they're named 'name', 'emai', and 'message'. Now I looked at the code that NT uses, but it doesn't seem to work on the asp.net form, I'm not super smart using .net or anything, but I've been able to do what I've needed thus far with it. Thanks for any help.

  • angelus350

    Unless you've got access to the source code of the Newstoday PHP and rewrote it in ASP.NET I don't know that it will help you.

    To write a login procedure, you'll need to store the login credintials in some type of data storage (flat file, database, etc.). Then when the user logs in, pass the credentials in a session variable or URL variable (session being more secure) to the server and validate the session against that user name and password creditial. Not a 1 step process if that's what you were looking for.