void Err(string msg)
{
Response.Write(msg)
goto last
}
void Page_Load()
{
....
Save()
....
}
void Save()
{
......
if(err)Err("更新出错");
.....
}