且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在详细信息视图网格上执行AutoPostBack?

更新时间:2023-10-19 17:29:04

private void Page_Load()
{
    if (!IsPostBack)
    {
        // Validate initially to force asterisks
        // to appear before the first roundtrip.
        Validate();
    }
}