要更新的页面
复制代码 代码如下:
你好
操作页面
复制代码 代码如下:
protected void Page_Load(object sender, EventArgs e)
{
if (Request.Params["data"].ToString().Equals("1"))
{
Response.Write("第一期");
}
else if (Request.Params["data"].ToString().Equals("2"))
{
Response.Write("第2期");
}
}



