I need to use the tag in ASP.NET in order to call a C# method from the code behind class, but it seems to be calling it irrespective of whether JavaScript is enabled or disabled. Other text inside the tags works as expected.
Below is the code I am using, is there something I am doing wrong?
Thanks
<noscript>
other text here
<% DisableTextBox("textBoxId"); %>
</noscript>
Solution TextBox was disabled server-side, and enabled client-side using the following JavaScript/jQuery:
$("#txtTotalQuantScore").prop("disabled", false);