ASP.NET中的这段代码是什么意思啊?
--------------------编程问答-------------------- 添加节点,子节点├ 这个符号加名字例如
哈哈
├ 嘿嘿
├ 呵呵 --------------------编程问答-------------------- 添加层级菜单! --------------------编程问答-------------------- 层级,列表 --------------------编程问答--------------------
谢谢哈,但是为什么添加了数据,却显示不了数据啊? --------------------编程问答-------------------- protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
ParentBind();
}
private void ParentBind()
{
ParentView.DataSource = new BLL.MobiMenu().ModuleParentBind(new Role().GetCookies());
ParentView.DataKeyNames = new string[] { "id" };
ParentView.DataBind();
}
protected void ParentView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
DataSet ds = new BLL.MobiMenu().ModuleChildBind(Convert.ToInt32(ParentView.DataKeys[e.Row.DataItemIndex].Value.ToString()), new Role().GetCookies());
Repeater gv = (Repeater)e.Row.Cells[0].Controls[0].FindControl("ChildRep");
gv.DataSource = ds;
gv.DataBind();
}
}这段代码是什么意思啊?添加数据的时候为什么在菜单处显示不了添加的内容啊?数据库里有添加的内容,但是却在菜单处没办法显示,不知道是不是这段代码的少写了什么?请高手指点哟。 --------------------编程问答-------------------- 绑定菜单的。
动态菜单 --------------------编程问答-------------------- 看样子是个菜单对象。
补充:.NET技术 , ASP.NET