这是我的一个简单的页面。当点击“确定”、“取消”时,为什么总是感觉到屏幕闪动刷新。代码如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页 </title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:TextBox ID="TextBox1" runat="server" Height="182px" TextMode="MultiLine" Width="291px"> </asp:TextBox>
        <asp:Button ID="Button1" runat="server" Text="确定" />
        <asp:Button ID="Button2" runat="server" Text="取消" />
    </div>
    </form>
</body>
</html>