I know this is a very common problem. I was trying to get a "enter key" event to invoke a click on a certain button on the page through javascript. However, I can't for the life of me fetch a single element by its id or name from my asp.net page.

It is my understanding that this issue is related to where the javascript is located and whether the elements have been rendered by the time the javascript is loaded or something of that nature?

Every time I attempt to use var x = document.getElementById('btn_AddAdmin') I end up with a null value.

My asp.net page has SiteMaster page that it inherits from. I have included a trimmed down version of my asp.net page and the SiteMaster page.

ASP.NET Page:

<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" 
     AutoEventWireup="true" CodeBehind="Admin.aspx.cs" Inherits="HERMES.Admin" %>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<input type="text" id="txt_AddAdmin" runat="server" onkeypress="Populate()" />

Master Page:

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" 
         Inherits="HERMES.SiteMaster" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head runat="server">
    <title></title>
    <link href="./Styles/Site.css" rel="stylesheet" type="text/css" />
    <asp:ContentPlaceHolder ID="HeadContent" runat="server">
    </asp:ContentPlaceHolder>
</head>
<body>
    <form runat="server">
</form>
</body>

Sorry for the formatting, I seem to be doing something wrong...

I have attempted placing the javascript in many different locations -- anywhere from the sitemaster page to the top and bottom of my asp.net page. No luck either way.

link|improve this question

2  
To answer your first question, yes, the position of document.getElementById does matter. You need to call this after the element with the id "btn_AddAdmin" has been rendered by the web browser or when you know the dom is ready. It is not clear from your question where you include your javascript. All I can see is that the function "Populate()" is called when text is entered into the input with the id txt_AddAdmin. I suggest you post the source code of your rendered html page here. Perhaps use jsfiddle.net to make things easier. – TJ. Feb 14 at 21:05
I have attempted relocating the javascript code all over the place as per the last line in my comment and it was not working regardless. However, @Xander has covered what the problem was. Thanks for the suggestion though! – ImGreg Feb 14 at 21:10
feedback

1 Answer

up vote 5 down vote accepted
var x = document.getElementById('<%= btn_AddAdmin.ClientID %>');

If your button is a Server Control it prepends a naming scheme to the input button so it can be bound back to the appropriate server control during postback. Thus the need to use the ClientID property to retrieve the "rendered id".

To learn more visit:

Google it with Bing:

  • clientid
  • aspnet webforms client side programming
link|improve this answer
Wow that actually worked. Why does this approach work and not the other? – ImGreg Feb 14 at 20:58
2  
@ImGreg - The id attribute on a server side control (one with a runat="server" attribute) means the server side ID of the control, to be used by code behind C#. The ClientId property for such controls is the emitted id as it would appear in the browser for consumption by javascript. – Oded Feb 14 at 21:00
Gottcha. That makes sense. However, I clearly need to read more into this to get a better understanding of how this stuff works. Any links for some relevant readings? Thanks again btw. – ImGreg Feb 14 at 21:02
"button so it can be bound back to the appropriate server control during postback" The ID is not sent on postback, the name attribute is. Although it is correct that both the name and ID are mangled, in a similar (but slightly different) fashion. – Matthew Feb 14 at 21:20
1  
@Matthew wiki.asp.net/page.aspx/1082/dopostback-function/ – Xander Feb 14 at 21:32
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.