请问:如下是什么错误?怎么改正?初.NET,望赐教
“/vote”应用程序中的服务器错误。
对象名 'voteMaster' 无效。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: 对象名 'voteMaster' 无效。
源错误:
行 28: SqlCommand cmd=new SqlCommand("select voteTitle from voteMaster where voteId=" +this.voteId,con);
行 29:
行 30: string title=Convert.ToString(cmd.ExecuteScalar());
行 31: this.LblTitle.Text=title;
行 32: // 在此处放置用户代码以初始化页面
源文件: c:\inetpub\wwwroot\vote\vote.aspx.cs 行: 30
堆栈跟踪:
[SqlException: 对象名 'voteMaster' 无效。]
System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream)
System.Data.SqlClient.SqlCommand.ExecuteScalar()
vote.vote.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\vote\vote.aspx.cs:30
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()