I have the following code in my aspx page in which Javascript is disbaled
will appear only if javascript is disabled from browser
<div id="jsDiv" runat="server">
<noscript>
Javascript is disbaled
</noscript>
</div>
in C# code if i get the innerText
or innerHtml
of jsDiv
at any time it will get the same result of div content either javascript is enabled or even disabled ...
my question is : How can I detect the current innerText of the div that appear to user in the browser from C# code ?