65.9K
CodeProject is changing. Read more.
Home

How to get the id/name of the ASP.NET server control as rendered on the browser in JQUERY/Javascript

starIconstarIconstarIconemptyStarIconemptyStarIcon

3.00/5 (3 votes)

Jul 23, 2010

CPOL
viewsIcon

27590

How to get the id/name of the ASP.NET server control as rendered on the browser in JQUERY/Javascript

var id = '<%=rbnQualification.ClientID %>' is used to retrieve the id of the ASP.NET control with id=rbnQualification as rendered on the browser. Var name = '<%=rbnQualification.UniqueID %>' is used to retrieve the name of the ASP.NET control with id=rbnQualification as rendered on the browser. Here, rbnQualification the id of the ASP.NET webserver control.