HTML form values adding commas in Classic ASP(在经典 ASP 中添加逗号的 HTML 表单值)
问题描述
我有一个经典的 ASP 页面,它提交回自身.奇怪的是,从选择返回的值的末尾添加了逗号.有没有人遇到过这样的事情?有没有推荐的故障排除步骤或工具?
I have a classic ASP page that submits back to itself. Strangely, the values being returned from the selects have commas being added to the ends of them. Has anyone run into anything like this before? Any troubleshooting steps or tools recommended?
我希望这些值以数字形式返回 - 它们是选项中显示的值的 ID.
I'm expecting the values to be returned just as numbers - they are the IDs of the values displayed in the option.
我检查了页面中的神秘逗号,但找不到任何 - 也没有在我正在提取的数据中.
I've checked for mystery commas in the page and can't locate any - nor in the data that I'm pulling through.
(注意 - 这些是单选,而不是多选)
(note - these are single-selects, not multiple)
推荐答案
听起来您有重复的表单字段.您的值用逗号连接在一起,如下所示:
Sounds like you have duplicate form fields. Your values are concatenated together with commas, like this:
<input type="text" name="name1" value="value1">
<input type="text" name="name1" value="value2">
<input type="text" name="name2" value="value3">
变成
name1=value1,value2
name2=value3
如果第二个name1
没有值,就变成
If the second name1
has no value, it becomes
name1=value1,
name2=value3
这篇关于在经典 ASP 中添加逗号的 HTML 表单值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在经典 ASP 中添加逗号的 HTML 表单值
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01