我是 RAZOR 的新手,对这项新技术非常感兴趣。
现在我有 2 个 RasdioButtons:月度会员和年费会员
我想从他们那里得到选定的值。
任何人都可以对此有所了解吗?
如果您能提供我一个小的演示代码,我将不胜感激。
我期待着您的回复。
这是剃刀代码。
@{
var name = Request["name"];
var dobDay = Request["dobDT"];
var dobMonth = Request["dobMT"];
var dobYear = Request["dobYR"];
var gender = Request["gender"];
var address = Request["address"];
var city = Request["city"];
var state = Request["state"];
var country = Request["country"];
@*Login details*@
var email = Request["email"];
var email2 = Request["email-2"];
var pwd = Request["pass"];
var pwd1 = Request["pass-2"];
@*Membership Plan*@
bool monthlyPlan = false;
if(Request[""])
}
这是html代码
<table cellpadding="0" cellspacing="0">
<tr>
<td width="40" align="center">
<input type="radio" name="memType" value="m" />
</td>
<td width="200">
<b>Monthly</b> ( $9.95 per month )
</td>
<td width="40" align="center">
<input type="radio" name="memType" value="y" />
</td>
<td>
<b>Yearly</b> ( $95.50 per year )
</td>
</td>
</tr>
</table>