ClientScript.RegisterClientScriptBlock(Me.GetType(), "ShowAgeTextBoxScript", _ "function ShowAge() " & vbCrLf & _ "{" & vbCrLf & _ " var elem = document.getElementById('" & AgeTextBox.ClientID & "');" & vbCrLf & _ " if (elem != null)" & vbCrLf & _ " alert('You entered ' + elem.value + ' into the Age text box.');" & vbCrLf & _ "}", True)