作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一段 JavaScript 可以处理一些表单数据,结果需要提交到我的代码隐藏中,以便我可以将其映射到对象并保存到数据库:
表格如下:
<form method="POST" id="paymentForm">
<span class="payment-errors" runat="server"></span>
<div>
<label>
<span>Card Number</span>
<br />
<input type="text" size="20" data-stripe="number" runat="server" placeholder="1111222233334444" />
</label>
</div>
<div>
<label>
<span>CVC</span>
<br />
<input type="text" size="4" data-stripe="cvc" runat="server" placeholder="123"/>
</label>
</div>
<div>
<label>
<span>Expiration (MM/YYYY)</span>
<br />
<input type="text" size="2" data-stripe="exp-month" runat="server" placeholder="01"/>
</label>
<br />
<input type="text" size="4" data-stripe="exp-year" runat="server" placeholder="2020"/>
</div>
<button type="submit">Submit Payment</button>
</form>
这是 js 位:
<script type="text/javascript">
// This identifies your website in the createToken call below
// You need to put your real publish key here.
Stripe.setPublishableKey('pk_test_1nDJ3hA1Mv2Sy9bUoYcBMXmm');
// ...
// I am using jquery to process the payment. It knows what form to
// process it on based on the name 'payment-form'
jQuery(function ($) {
//payment submission
$('#ctl01').submit(function (event) {
alert('In .submit()');
var $form = $(this);
// Disable the submit button to prevent repeated clicks
$form.find('button').prop('disabled', true);
Stripe.createToken($form, stripeResponseHandler);
// Prevent the form from submitting with the default action
return false;
});
//if there is a error, it is displayed on the page if there was
//no error this is where it gets sent to the server.
var stripeResponseHandler = function (status, response) {
var $form = $('#ctl01');
if (response.error) {
// Show the errors on the form
$form.find('.payment-errors').text(response.error.message);
$form.find('button').prop('disabled', false);
} else {
// token contains id, last4, and card type
var token = response.id;
// Insert the token into the form so it gets submitted to the server
$form.append($('<input type="hidden" name="stripeToken" />').val(token));
// and submit
$form.get(0).submit();
}
};
});
</script>
因此,js 创建了一个 Stripe token ,但我不知道当我点击提交时如何让它命中我的代码隐藏。页面只是闪烁,什么也没有。
我试图使该按钮成为一个 asp.net 按钮,并绑定(bind)一个事件,但没有成功。
我应该在 Page_Load() 中执行一些操作,以便能够在页面的 POST 中包含此数据吗?
最佳答案
我看到两个直接选项,具体取决于您想在服务器端代码中执行的操作:
__doPostBack
JavaScript 函数以引发服务器端回发。如果您想与页面上的 ASP.NET 服务器控件交互,我会推荐这种方法。这是另一个 StackOverflow 问题,详细说明了如何发送 Multiple parameters in __doPostBack .
关于c# - 如何将 javascript 方法(JSON 对象)的结果发送到 asp.net webform 上的代码隐藏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18049131/
我是一名优秀的程序员,十分优秀!