Obtendo valor do botão de opção html - em aspx-c #

Eu tenho a seguinte fonte de HTML

<form name="Register1" action="Register.aspx" id="registerform" method="post" 
      runat="server" style="margin-top: 15px;">
    <input type="radio" name="Gender" value="male" />male
    <input type="radio" name="Gender" value="female" />female
</form>

Minha pergunta é como posso obter o valor selecionado para variável na página c #?

Eu tentei isso:

Gender = Request.Form["Gender"].ToString();

Mas não deu certo ...

questionAnswers(4)

yourAnswerToTheQuestion