ASP.NET TextBox verses input type="text" behavior -


I notice with ASP .NET if the server side control textbox is used with autopostback, Postback) will not submit forms when form type, which differs from the behavior for plain old HTML pages. Okay, I can set autopostback to get the behavior I want after the entry key However, autopostback will also be submitted (or postback) when the typed text does not end with entering, but the focus has changed (Ie with tabs or mouse clicks), which is different from plain old HTML pages.

In relation to text input, to behave like a plain old HTML page, ASP.NET How can a page, regardless of the key enter or a change in focus?

There is some additional setup work, see this article:


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -