wb.InsertHTML("<div style='height:50px'></div>")
wb.AddPage("", "page3").Attribute = "style='position: fixed;bottom: 0;right: 0;left: 0'" '增加两个page
With wb.AddButtonGroup("page3", "btg1", False)
.Add("btn1", "返回首页", "", "default.htm")
' .Add("btn2", "保存", "button").Attribute = ""
If e.Cookies("用户级别") = "科长" Then
.Add("btnDelete", "删除").Attribute = """
End If
End With
e.WriteString(wb.Build)
With wb.AddDialog("", "dlg1", "删除确认", "您确定要删除当前信息吗?")
.AddButton("btnCancel", "取消").Kind = 1
.AddButton("btnOK", "确定").Attribute = " & e.GetValues("name") & "'"""
End With
e.WriteString(wb.Build)
网页中点击删除无反应