born2program
Technical User
I have a asp.net page with a vb.net backend. In my Page_Load event I have placed the following code to set focus to the password text box. It works but when I click the login button I get this error
. It runs fine if I remove the code in question. Here is the code:
Any help is appreciated. Thanks.
Code:
Microsoft JScript runtime error: 'document.getElementById(...)' is null or not an object
Code:
Page.RegisterStartupScript("SetFocus", "<script>document.getElementById('" & txtPassword.ClientID & "').focus();</script>")