473,396 Members | 1,804 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How To? - Use Javascript To Test If a TextBox Exists On a Page

I have a home page with username and password textboxes and a login
button for purposes of users being able to log in (forms
authentication) directly on the site home page. I also have a dedicated
"Login.aspx" page, but I don't want users redirected there unless
absolutely necessary.

I have registered a javascript block via "Page.RegisterStartupScript"
that sets focus to the "txtUserName" textbox control on Page Load. It
works great for IE and Firefox.

But...

The problem is that the "txtUserName" textbox does not exist once the
user has logged in and the page posts back. The code behind then knows
that the user is authenticated, and so it does a ".Visible=false" for
the "txtUserName", "txtPassword" and "btnLogin" controls.

Then, when the page loads after the postback, the javascript block
causes an error icon in the lower left corner of the browser.
Apparently it is still trying to set focus to the control? I thought I
had this fixed when I set the code behind to register the page startup
script only when the page loaded for the first time...but that didn't
work for some reason, because it still tries to set focus on postbacks.
I also tried disabling the page viewstate along with the above, but
that didn't work either.

Can the javascript block be coded to test if the "txtUserName"
(document.txtUserName ?) textbox exists before trying to set focus to
it? If so then that would do it...but how would the code look? Also, is
there another solution that I am not seeing here? I need to get this
working correctly.

Any suggestions are appreciated. Thanks.

Nov 19 '05 #1
7 4340
var txtBox=document,getElementById( "txtUserName");
if (txtBox!=null)
txtBox.focus();
Eliyahu

<jo*********@topscene.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
I have a home page with username and password textboxes and a login
button for purposes of users being able to log in (forms
authentication) directly on the site home page. I also have a dedicated
"Login.aspx" page, but I don't want users redirected there unless
absolutely necessary.

I have registered a javascript block via "Page.RegisterStartupScript"
that sets focus to the "txtUserName" textbox control on Page Load. It
works great for IE and Firefox.

But...

The problem is that the "txtUserName" textbox does not exist once the
user has logged in and the page posts back. The code behind then knows
that the user is authenticated, and so it does a ".Visible=false" for
the "txtUserName", "txtPassword" and "btnLogin" controls.

Then, when the page loads after the postback, the javascript block
causes an error icon in the lower left corner of the browser.
Apparently it is still trying to set focus to the control? I thought I
had this fixed when I set the code behind to register the page startup
script only when the page loaded for the first time...but that didn't
work for some reason, because it still tries to set focus on postbacks.
I also tried disabling the page viewstate along with the above, but
that didn't work either.

Can the javascript block be coded to test if the "txtUserName"
(document.txtUserName ?) textbox exists before trying to set focus to
it? If so then that would do it...but how would the code look? Also, is
there another solution that I am not seeing here? I need to get this
working correctly.

Any suggestions are appreciated. Thanks.

Nov 19 '05 #2
I am not sure what the actual problem is. I understand what you are trying to
do, but not the why you are trying to do it.

Is the problem, there are certain pages that a user should not have to log
in to use? If so, restrict those pages by turning authentication off for
those pages. You set up a separate section of the web.config to exclude those
pages. Conversely, you can restrict the small number of login pages, if they
are fewer.

Is the problem, depending on how a user gets into the app they may be
authenticated by the network. If so, set up the login cookie when you find
those types of users and they will never be redirected to the login.aspx page.

What am I getting at? You are asking how to do something that is rather
kludgy and it is more likely you are doing this out of a misunderstanding of
how ASP.NET authentication works rather than a real need to do it this way.
By rephrasing the why, you might find that you do not have to go to the
trouble of adding JavaScript to the login page to hide controls from the user.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
"jo*********@topscene.com" wrote:
I have a home page with username and password textboxes and a login
button for purposes of users being able to log in (forms
authentication) directly on the site home page. I also have a dedicated
"Login.aspx" page, but I don't want users redirected there unless
absolutely necessary.

I have registered a javascript block via "Page.RegisterStartupScript"
that sets focus to the "txtUserName" textbox control on Page Load. It
works great for IE and Firefox.

But...

The problem is that the "txtUserName" textbox does not exist once the
user has logged in and the page posts back. The code behind then knows
that the user is authenticated, and so it does a ".Visible=false" for
the "txtUserName", "txtPassword" and "btnLogin" controls.

Then, when the page loads after the postback, the javascript block
causes an error icon in the lower left corner of the browser.
Apparently it is still trying to set focus to the control? I thought I
had this fixed when I set the code behind to register the page startup
script only when the page loaded for the first time...but that didn't
work for some reason, because it still tries to set focus on postbacks.
I also tried disabling the page viewstate along with the above, but
that didn't work either.

Can the javascript block be coded to test if the "txtUserName"
(document.txtUserName ?) textbox exists before trying to set focus to
it? If so then that would do it...but how would the code look? Also, is
there another solution that I am not seeing here? I need to get this
working correctly.

Any suggestions are appreciated. Thanks.

Nov 19 '05 #3
Gregory, I think it is you that does not understand. While I know that
I have a lack of understanding about some things in asp.net (like
everyone else?), I am fairly confident that I do not have a
misunderstanding! :-)

In my original post I never said anything about using javascript to
hide controls...that would not make any sense here. Maybe I just worded
it in a confusing way...if so then I am sorry.

I am only using javascript to set focus to my txtUserName textbox. The
hiding of controls is occuring in the code behind once the user logs
in, as it should. The problem is that the javascript continues to try
to set focus once the page does a post back and the controls are hidden
(null). This generates the error. I simply wanted a javascript sample
that could be used to test for the controls on the page before
attempting to set focus.

I think that Eliyahu's post above will do just that.

Anyways, thanks a bunch to both of you!

JP>

Nov 19 '05 #4
You can also do

if(typeof(txtUserName) != "undefined")
txtBox.focus();

Sreejith

"Eliyahu Goldin" wrote:
var txtBox=document,getElementById( "txtUserName");
if (txtBox!=null)
txtBox.focus();
Eliyahu

<jo*********@topscene.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
I have a home page with username and password textboxes and a login
button for purposes of users being able to log in (forms
authentication) directly on the site home page. I also have a dedicated
"Login.aspx" page, but I don't want users redirected there unless
absolutely necessary.

I have registered a javascript block via "Page.RegisterStartupScript"
that sets focus to the "txtUserName" textbox control on Page Load. It
works great for IE and Firefox.

But...

The problem is that the "txtUserName" textbox does not exist once the
user has logged in and the page posts back. The code behind then knows
that the user is authenticated, and so it does a ".Visible=false" for
the "txtUserName", "txtPassword" and "btnLogin" controls.

Then, when the page loads after the postback, the javascript block
causes an error icon in the lower left corner of the browser.
Apparently it is still trying to set focus to the control? I thought I
had this fixed when I set the code behind to register the page startup
script only when the page loaded for the first time...but that didn't
work for some reason, because it still tries to set focus on postbacks.
I also tried disabling the page viewstate along with the above, but
that didn't work either.

Can the javascript block be coded to test if the "txtUserName"
(document.txtUserName ?) textbox exists before trying to set focus to
it? If so then that would do it...but how would the code look? Also, is
there another solution that I am not seeing here? I need to get this
working correctly.

Any suggestions are appreciated. Thanks.


Nov 19 '05 #5
Ideally, you should remove the scripts that are not needed for the current
execution of the page.

On page_load, if the request is a not a postback, attach the scripts to the
startup for the textbox focus. If the request is a postback, then don't
attach the scripts.
--
Direct Email: Michael.Baltic@RemoveCharactersUpTo#NCMC.Com

Staff Consultant II
Enterprise Web Services
Cardinal Solutions Group
"Sreejith Ram" wrote:
You can also do

if(typeof(txtUserName) != "undefined")
txtBox.focus();

Sreejith

"Eliyahu Goldin" wrote:
var txtBox=document,getElementById( "txtUserName");
if (txtBox!=null)
txtBox.focus();
Eliyahu

<jo*********@topscene.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
I have a home page with username and password textboxes and a login
button for purposes of users being able to log in (forms
authentication) directly on the site home page. I also have a dedicated
"Login.aspx" page, but I don't want users redirected there unless
absolutely necessary.

I have registered a javascript block via "Page.RegisterStartupScript"
that sets focus to the "txtUserName" textbox control on Page Load. It
works great for IE and Firefox.

But...

The problem is that the "txtUserName" textbox does not exist once the
user has logged in and the page posts back. The code behind then knows
that the user is authenticated, and so it does a ".Visible=false" for
the "txtUserName", "txtPassword" and "btnLogin" controls.

Then, when the page loads after the postback, the javascript block
causes an error icon in the lower left corner of the browser.
Apparently it is still trying to set focus to the control? I thought I
had this fixed when I set the code behind to register the page startup
script only when the page loaded for the first time...but that didn't
work for some reason, because it still tries to set focus on postbacks.
I also tried disabling the page viewstate along with the above, but
that didn't work either.

Can the javascript block be coded to test if the "txtUserName"
(document.txtUserName ?) textbox exists before trying to set focus to
it? If so then that would do it...but how would the code look? Also, is
there another solution that I am not seeing here? I need to get this
working correctly.

Any suggestions are appreciated. Thanks.


Nov 19 '05 #6
I agree with totally...and I tried that. I put the
Page.RegisterStartupScript code line within the "if(!Page.IsPostBack)
block. However, that did not work for some reason. The script continued
to be emitted within the HTML for postbacks. I am not sure why.

But, I did get it working properly. Thanks.

Nov 19 '05 #7
I never liked the idea of attaching scripts from the server code. If the
script is short, you won't feel any difference if it or there or not. If it
is long, say more then 20 lines of code, you can put it in a separate file
that will be cached on client side.

Eliyahu

"Michael Baltic" <Mi***********@discussions.microsoft.com> wrote in message
news:B9**********************************@microsof t.com...
Ideally, you should remove the scripts that are not needed for the current
execution of the page.

On page_load, if the request is a not a postback, attach the scripts to the startup for the textbox focus. If the request is a postback, then don't
attach the scripts.
--
Direct Email: Michael.Baltic@RemoveCharactersUpTo#NCMC.Com

Staff Consultant II
Enterprise Web Services
Cardinal Solutions Group
"Sreejith Ram" wrote:
You can also do

if(typeof(txtUserName) != "undefined")
txtBox.focus();

Sreejith

"Eliyahu Goldin" wrote:
var txtBox=document,getElementById( "txtUserName");
if (txtBox!=null)
txtBox.focus();
Eliyahu

<jo*********@topscene.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
> I have a home page with username and password textboxes and a login
> button for purposes of users being able to log in (forms
> authentication) directly on the site home page. I also have a dedicated > "Login.aspx" page, but I don't want users redirected there unless
> absolutely necessary.
>
> I have registered a javascript block via "Page.RegisterStartupScript" > that sets focus to the "txtUserName" textbox control on Page Load. It > works great for IE and Firefox.
>
> But...
>
> The problem is that the "txtUserName" textbox does not exist once the > user has logged in and the page posts back. The code behind then knows > that the user is authenticated, and so it does a ".Visible=false" for > the "txtUserName", "txtPassword" and "btnLogin" controls.
>
> Then, when the page loads after the postback, the javascript block
> causes an error icon in the lower left corner of the browser.
> Apparently it is still trying to set focus to the control? I thought I > had this fixed when I set the code behind to register the page startup > script only when the page loaded for the first time...but that didn't > work for some reason, because it still tries to set focus on postbacks. > I also tried disabling the page viewstate along with the above, but
> that didn't work either.
>
> Can the javascript block be coded to test if the "txtUserName"
> (document.txtUserName ?) textbox exists before trying to set focus to > it? If so then that would do it...but how would the code look? Also, is > there another solution that I am not seeing here? I need to get this
> working correctly.
>
> Any suggestions are appreciated. Thanks.
>

Nov 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
by: tshad | last post by:
I posted this on the asp.net group, also. I wasn't sure whether this was an asp.net problem or a javascript problem. I have a page that was originally created from a program I found on the net...
0
by: Caesar Augustus | last post by:
I'm having a problem with two different javascript controls in my app. The first chuck of javascript that I pasted into my app is the client-side calendar control popup which works fine when first...
10
by: Shadow Lynx | last post by:
That subject packs a whallop, so let me explain in better detail what's happening and how it relates to ASPX pages... In a nutshell, if the first <script /on a page is of type "text/vbscript",...
2
by: VMI | last post by:
In the Page_Load() of my webForm, I have the following code, and on my HTML button, the onclick button calls writeVal() (the javascript function). When I click on the button, I see the messagebox...
1
by: KRISHNA PRAVI | last post by:
the error is "runtime error object expected" here is the code....................................................................................... <script language="javascript"...
4
by: Andy B | last post by:
How do you add javascript to a page from codebehind? I have a method I am working on that has a few conditions in it: 1. if either 1 or both WordTextBox or DefinitionTextBox is empty, show a...
4
by: Peter | last post by:
ASP.NET I have an application which use ASP.NET Autocomplete extender which works great. But I have a question how to update all the fields on the screen using Ajax. Users starts typing in a...
2
Frinavale
by: Frinavale | last post by:
JavaScript in ASP.NET Using JavaScript in ASP.NET pages can make your application seem to work faster and prevent unnecessary calls to the server. JavaScript can be used to perform client-side...
2
by: pankajsingh5k | last post by:
Dear All, Please help me... I had read an article to lazy load a tab in a tabcontainer using an update panel on http://mattberseth.com/blog/2007/07/how_to_lazyload_tabpanels_with.html ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.