Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
ASP .Net
On postback, EVENTTARGET is populated but IsPostback == false, no events fire?!
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Kenneth Baltrinic, post: 2915428"] I am having a very odd problem. On a page that was working until very recently we are now encountering the following situation: The page is a very basic fill in the blank form used for changing ones password in a forms based authentication scenario. After the user fills out the form and clicks the Change Password button, the page simply reloads as if nothing happened. We turned on page tracing and also added the following lines to the PageLoad event: Trace.Write( Request.Form["__EVENTTARGET"] ); Trace.Write( cmdChangePassword.UniqueID ); Trace.Write( Page.IsPostback ); From which we get: ctl00$cphMain$cmdChangePassword ctl00$cphMain$cmdChangePassword false The first two values tell me that IsPostback should be true and that the cmdChangePassword click event should fire. But IsPostback is false and the cmdChangePassword_OnClick event handler is never called. As I said this was working and now suddenly stopped. Any ideas? --Ken [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
ASP .Net
On postback, EVENTTARGET is populated but IsPostback == false, no events fire?!
Top