ASP中的错误:A page can have only one server-side Form tag

来源:百度知道 编辑:UC知道 时间:2024/06/05 18:14:29
出现如下错误,不知道是什么意思?
Server Error in '/programmingnote' Application.
--------------------------------------------------------------------------------

A page can have only one server-side Form tag.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: A page can have only one server-side Form tag.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

有种说法说这个错误与SQL有关,但我的数据库是access,为什么也有错?

他不是少了,是多了

不允许有多个form的

你这个是ASP.NET!
在<form>标签里加入 runat="server"属性.就像下面这样:
<form runat="Server">

把原代码发来看看