Multiple forms on ASP.NET page

后端 未结 4 581
感情败类
感情败类 2020-12-03 16:21

Coming from a Classic ASP background, I\'m used to multiple forms on a page, but this clearly limited in a ASP.NET page.

However, I have a situation where I have a f

4条回答
  •  庸人自扰
    2020-12-03 16:57

    Maybe I'm misunderstanding the question, but can't you simply have 2 divs inside the form, where only one is visible at any time. e.g.

    Then, in btnSubmitFirst_Click:

     doSubmissionToPaypal.visible=True
     getUserInput.visible = false
    

    Something along those lines?

提交回复
热议问题