Event after filling in autocomplete Asp.net C # or javascript / html,

Trying to fire an event (and process it in the aC # method on the aspx.cs page of the file) after autocomplete fills in the text box and password so that I can automatically log in. Is there any way to do this?

+4
source share
1 answer

The problem is that autocomplete is handled differently by different browsers. Some send a change event, some do not. Therefore, it is almost impossible to connect an event that fires when the browser automatically fills in the input field.

, autocomplete = "off" , , .

: http://avernet.blogspot.in/2010/11/autocomplete-and-javascript-change.html

0

Source: https://habr.com/ru/post/1657700/


All Articles