I have an ASP.Net page with a C# code behind.
However, I\'ve been asked to not use a code behind - so that it will be easier to deploy in SharePoint.
Is the
yes on your aspx page include a script tag with runat=server
You can also use classic ASP Syntax
<% if (this.MyTextBox.Visible) { %> Only show when myTextBox is visible <% } %>