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;
using System.Data.SqlClient;
using System.Configuration ;
namespace BMS.guestbook
{
/// <summary>
/// reply 的摘要说明。
/// </summary>
public class reply : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Label lblSubject;
protected System.Web.UI.WebControls.HyperLink hlkAuthor;
protected System.Web.UI.WebControls.Label lblCount;
protected System.Web.UI.WebControls.Label lblTime;
protected System.Web.UI.WebControls.DataList DataList1;
protected System.Web.UI.WebControls.Label lblMsg1;
protected System.Web.UI.WebControls.Button btnReset;
protected System.Web.UI.WebControls.Button btnReply;
protected System.Web.UI.WebControls.TextBox txtContent;
protected SqlConnection conn=new SqlConnection();
protected System.Web.UI.WebControls.Label Label1;//声明成员conn
private string postID;
private void Page_Load(object sender, System.EventArgs e)
{
if(Session.Count==0)//访问者没有登录
Response.Redirect("../default.aspx");
else//访问者已经登录
{
if(!IsPostBack)
{
postID=Request["PostID"];
}
string strconn= ConfigurationSettings.AppSettings["dsn"];
conn.ConnectionString=strconn;
BindData();
}
}
private void BindData()
{
//留言者的留言情况
string selCmd1 = "select * from GuestBook where PostID="+postID;
SqlDataAdapter da1=new SqlDataAdapter(selCmd1,conn);
//留言的所有回复者回复情况
string selCmd2="select * from GuestBook where ParentID="+postID;
SqlDataAdapter da2=new SqlDataAdapter(selCmd2,conn);
DataSet ds=new DataSet();
da1.Fill(ds,"host");
da2.Fill(ds,"guest");
//留言的主题
lblSubject.Text=ds.Tables["host"].Rows[0][4].ToString();
//留言的回复次数
int reCount=ds.Tables["guest"].Rows.Count;
lblCount.Text=reCount.ToString();
//留言的发表时间
lblTime.Text=ds.Tables["host"].Rows[0][2].ToString();
//留言内容
lblMsg1.Text=ds.Tables["host"].Rows[0][5].ToString();
//留言的作者,并将作者的UID作为参数传到message.aspx
hlkAuthor.Text=ds.Tables["host"].Rows[0][3].ToString();
hlkAuthor.NavigateUrl="message.aspx?UID="+hlkAuthor.Text;
//绑定数据
DataList1.DataSource=ds;
DataList1.DataMember="guest";
DataList1.DataBind();
conn.Close();
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
this.btnReply.Click += new System.EventHandler(this.btnReply_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void btnReply_Click(object sender, System.EventArgs e)
{
string strconn= ConfigurationSettings.AppSettings["dsn"];
conn.ConnectionString=strconn;
string Name=Session["UID"].ToString();
string insCmd="insert GuestBook values("+postID+",getdate(),'"+Name+"',' ','"+txtContent+"')";
SqlCommand cmd=new SqlCommand(insCmd,conn);
cmd.Connection.Open();
cmd.ExecuteNonQuery();
cmd.Connection.Close();
conn.Close();
BindData();
txtContent.Text="";
}
private void btnReset_Click(object sender, System.EventArgs e)
{
txtContent.Text="";
}
}
}
运行出现
第 1 行: '=' 附近有语法错误。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: 第 1 行: '=' 附近有语法错误。
源错误:
行 61: SqlDataAdapter da2=new SqlDataAdapter(selCmd2,conn);
行 62: DataSet ds=new DataSet();
行 63: da1.Fill(ds,"host");
行 64: da2.Fill(ds,"guest");
行 65: //留言的主题