62,266
社区成员
发帖
与我相关
我的任务
分享
<div id="nologin">
111111111
</div>
<div id="islogin">
222222222
</div>
protected void Page_Load(object sender, EventArgs e)
{
if (Session["UserName"]==null)
{
nologin.Attributes["style"] = "display:block";
islogin.Attributes["style"] = "display:none";
}
else
{
nologin.Attributes["style"] = "display:none";
islogin.Attributes["style"] = "display:block";
}
}
