username

What's standard minimal and maximal lenght of username, password and email?

What's standard minimal and maximal lenght of username, password and email? ...

How do browsers choose which field is saved as 'username'?

This may be really simple, but I'm wondering how browsers that offer a 'remember your password' facility select the 'username' to save? I'm working with some asp.net that is spitting out it's usual incomprehensible id/name values and the browser is offering to remember the registration form's 'postcode' field as the username, rather tha...

VB.net request username

I am building an app where i need to request user name and enter it into the database along with some other fields. Is there an easy way to request a username using vb.net? ie username = 'Home/JimJones' ...

What prior knowledge do i need to have for socket programming?

I have to design GUI for authentication. Which will have 1. User name 2. Password using The stream socket, The packet socket or The raw packet in php and mysql language. any references or tutorials? ...

How do configure username/password authentication for WCF netTcpBinding?

I would like to be able to use username/password authentication with nettcpbinding, is that possible? (UserNamePasswordValidator or something like that), no windows authentication. I'm configuring everything with code, so please only use code and not app.config in any examples. ...

Set username and password to SQL Server Express database

I added a new database to my project before (SQL Server Express database). And now i decide to set username and password to my database file. (*.mdf file i mean). How can i do this issue? Thanks in advance. ...

POST to password protected URL?

I am working on a project that requires me to POST some data to a url that requires a username and password for access. How do I build the URL so that it automatically logs into the system? $.ajax({ url: "https://xxxxxxx", type: "POST", data: "___PUT_BODY___="+file+"&file="+time, }) ...

Comparing entered username with database

I have created a form. Now I want to check if the username entered by the user is already on the database or not. If yes, I want it to display an error message. Thanks ...