if (TreeViewCategory.Nodes[0].ChildNodes.Count > 0)//取出cid的值
{
if (Session["CategoryID"] != null)
{
ViewState["cid"] = int.Parse(Session["CategoryID"].ToString());
cid=int.Parse(ViewState["cid"].ToString());
}
else
{
Session["CategoryID"] = TreeViewCategory.Nodes[0].ChildNodes[0].Value;
ViewState["cid"] = TreeViewCategory.Nodes[0].ChildNodes[0].Value;
cid = int.Parse(ViewState["cid"].ToString());
}
}
TreeViewCategory.Attributes.Add("onclick", "doSelect(this)");
iframeEdit.Attributes.Add("src", "AttachmentTypeList.aspx?id="+cid);
为什么我都没有改动这个页,突然之间运行程序就提示我“使用了未赋值的局部变量“cid”,为什么提取不了cid的值,是怎么回事,请求支援