0

我有一个带有动态创建的 Web 表单RadioButtonList、一个主题文本框、一个消息文本框和一个提交按钮。我需要 Solarwinds 的监控才能使用 post 方法提交表单。我正在使用QueryString文本框,但我迷失了单选按钮。有没有办法通过 URL 选择单选按钮并提交表单?以下是生成的 HTML 示例:

<input id="RadioButtonList1_0" type="radio" name="RadioButtonList1" value="value 1" /><label for="RadioButtonList1_0">Topic 1</label>

<input id="RadioButtonList1_1" type="radio" name="RadioButtonList1" value="value 2" /><label for="RadioButtonList1_1">Topic 2</label>
4

1 回答 1

0

这就是我所需要的。今天过得很慢!

RadioButtonList1.SelectedValue = Request.QueryString["selected"];

www.myurl.com?selected=值 1

于 2013-03-13T15:48:57.693 回答