Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须将五个字段值发布到外部 url 以处理来自 asp.net 应用程序的付款。外部公司给了我html中的示例代码。问题是我不能使用 html,因为我必须在代码隐藏中填充其中一些值并使用 aspx 页面。由于我的网站有一个母版页,我无法使用该行
<FORM name=thisForm action="https://abc.com/xyz/default.asp" method=post>
请让我知道如何使用 asp.net 从后面的代码中发布这些值。
谢谢
Since my website has a master page I can't use the line这不是真的。您可以在任何 aspx 页面的代码隐藏中设置这些属性,例如:
Since my website has a master page I can't use the line
Form.Action = "https://abc.com/xyz/default.asp"; Form.Method = "post";