一个关于Datalist“选择”纪录的问题,高手们帮我一下,小弟在线等,在线结分¥¥¥¥
我用datalist的显示“文章主题”,然后单击“详细”后显示内容,是用SelectedItemTemplate完成的,但是在单击“详细”后整个页面后呈现空白,什么内容也没有!
主要代码如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
userName = Convert.ToString(Session[ "userName "]);
userFlag = Convert.ToInt32(Session[ "userFlag "]);
c_id = Convert.ToInt32(Request.QueryString[ "cid "].ToString());
SelectCorName(); //将名称取出
checkUser(); //用户权限检查
}
}
protected void SelectCorName() //将名称取出
{
SqlConnection conn = userOperate.createconn();
SqlDataAdapter adp = new SqlDataAdapter();
string strsql = "select c_name from client where c_id= " + c_id; ;
adp.SelectCommand = new SqlCommand(strsql, conn);
DataSet ds = new DataSet();