分析器错误
说明: 在分析向此请求提供服务所需资源时出错。请检查下列特定分析错误详细信息并适当地修改源文件。
分析器错误信息: ID“Form1”已被其他控件使用。
源错误:
行 39: </TABLE>
行 40: </form>
行 41: <FORM id="Form1" method="post" runat="server">
行 42: <FONT face="宋体"></FONT>
行 43: </FORM>
源文件: c:\inetpub\wwwroot\views\添加视频.aspx 行: 41
using System.Data.SqlClient;
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace views
{
/// <summary>
/// 添加视频 的摘要说明。
/// </summary>
public class 添加视频 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.Label Label2;
protected System.Web.UI.WebControls.Label Label3;
protected System.Web.UI.WebControls.RequiredFieldValidator RFV1;
protected System.Web.UI.WebControls.RequiredFieldValidator RFV2;
protected System.Web.UI.WebControls.TextBox TB1;
protected System.Web.UI.WebControls.TextBox TB2;
protected System.Web.UI.WebControls.Button Button1;
protected System.Web.UI.WebControls.Button Button2;
protected System.Web.UI.WebControls.Label Label4;
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void Button1_Click(object sender, System.EventArgs e)
{
string connstr="server=127.0.0.1;database=aspnet;uid=sa;pwd=123123";
string strsql="select count(*)from VideoInfo where VideoID like'"+TB1.Text+"'";
SqlConnection Conn=new SqlConnection(connstr);
SqlCommand mycommand=new SqlCommand(strsql,Conn);
Conn.Open();
int flag=(int)mycommand.ExecuteScalar();
Conn.Close();
if(flag==0)
{
string selectstr="insert into VideoInfo(VideoID,VideoAdd)value('"+TB1.Text+"','"+TB2.Text+"')";
SqlCommand addcommand=new SqlCommand(selectstr,Conn);
Conn.Open();
addcommand.ExecuteNonQuery();
Conn.Close();
Session["VideoID"]=TB1.Text;
Label4.Text="添加成功!";
}
else
{
Label4.Text="错误,请重试!";
TB1.Text="";
TB2.Text="";
}
}
}
}
这是为什么啊???各位帮帮忙吧!
谢谢了
5 个解决方案
#1
一个webform只能使用一个Form标签
而且带runat=server的标签ID必须唯一
而且带runat=server的标签ID必须唯一
#2
这个问题是要给前台代码看的.
#3
id="Form1" 是否重复啊.还有个id是这个名字的
#4
那我该怎么解决呢?能不能说的明了点的....
我不大懂...
我不大懂...
#5
一个webform只能使用一个Form标签
而且带runat=server的标签ID必须唯一
是什么意思的呀??
而且带runat=server的标签ID必须唯一
是什么意思的呀??
#1
一个webform只能使用一个Form标签
而且带runat=server的标签ID必须唯一
而且带runat=server的标签ID必须唯一
#2
这个问题是要给前台代码看的.
#3
id="Form1" 是否重复啊.还有个id是这个名字的
#4
那我该怎么解决呢?能不能说的明了点的....
我不大懂...
我不大懂...
#5
一个webform只能使用一个Form标签
而且带runat=server的标签ID必须唯一
是什么意思的呀??
而且带runat=server的标签ID必须唯一
是什么意思的呀??