重构老项目偶然一瞥:

1 if (!PageValidation())
2         {
3             this.Page.ClientScript.RegisterStartupScript(this.Page.GetType(), "ValidationFailed""<script type='text/javascript'>alert('页面验证失败,请确认数据输入是否正确!');</script>");
4         }

 

    /// <summary>
    /// 验证页面数据,防止非正常提交
    /// </summary>
    /// <returns></returns>
    protected bool PageValidation()
    {
        //时间不够,暂时不验证了
        bool result = true;
        return result;
    }

 

posted on 2016-05-16 15:17  guanglixing16  阅读(230)  评论(0编辑  收藏  举报