我有一个带有动态创建的 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>