When "Female" is selected, "Beauty, Talented Woman" is displayed; when "Male" is selected, the aspx page content is hidden:
Use RadioButten (or CheckBox) to display and hide div
cs page code:
protected void Page_Load(object sender, EventArgs e)
{
this.Radio2.Checked = true;
if (this.Radio2.Checked)
this.nvInfo.Attributes.CssStyle.Add("display", "block"); //Add CSS style attributes from .cs to the HTML control in .aspx
if (this.Radio1.Checked)
this.nvInfo.Attributes.CssStyle.Add("display", "none"); //Add CSS style attributes from .cs to the HTML control in .aspx
}