Click here to Skip to main content
Click here to Skip to main content

How to Get User Controls ClientID in JavaScript in aspx Page

By , 16 Apr 2013
 

Introduction

There are lots of times when we access user control in our web application, At the time of using user control, we want to access this User control in JavaScript. Given below is the problem and solution for accessing user control in JavaScript.

Problem 

While using user control, we want to access this user control in JavaScript, and we try to get its Client ID. But by using document.getElementById('<% =UserControl.ClientID%>'), it returns null value.

Solution 

To overcome this problem, we create one function in UserControls code behind like "GetClientID" - it returns the Clientid of the control, then we can easily access the same.

Follow the Steps

  1. Create a Web Application, add a Web User Control by clicking add new Item.
  2. Write the below code in User Control:
    Public Function getClientID() As String
            Return Controls.ClientID
    End Function
  3. After that, register this user control in your aspx page by adding the below tag:
    <%@ Register Src="~/WebUserControl.ascx" TagName="Test" TagPrefix="uc2" %>
  4. After that, add JavaScript tag in aspx head section.
    function FunctionName {
        alert(document.getElementById('<%=Uctest.getClientID()%>').value);
    }
  5. It shows the value of control which is used in user control.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Dnyaneshwar Kondbale
Software Developer (Senior)
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionGoodmemberMember6118 Apr '13 - 1:25 
GeneralMy vote of 3memberRohan Leuva16 Apr '13 - 23:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 17 Apr 2013
Article Copyright 2013 by Dnyaneshwar Kondbale
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid