asp中为了实现无刷新,常常会将数据提交到隐藏框架中,在asp.net中
有一个很简单的设置就可以实现
void Page_Load(Object sender, EventArgs e)
{
   this.SmartNavigation = true;
}
或者直接写在
<%@ Page language="c#" Codebehind="AllBook.aspx.cs" AutoEventWireup="false" Inherits="wx.AllBook" %><%@ Page language="c#" Codebehind="AllBook.aspx.cs"  SmartNavigation = true  AutoEventWireup="false" Inherits="wx.AllBook" %>

呵呵
<%@ Page language="c#" Codebehind="AllBook.aspx.cs" AutoEventWireup="false" Inherits="wx.AllBook" %><%@ Page language="c#" Codebehind="AllBook.aspx.cs" AutoEventWireup="false" Inherits="wx.AllBook" %><%@ Page language="c#" Codebehind="AllBook.aspx.cs" AutoEventWireup="false" Inherits="wx.AllBook" %>

相关文章:

  • 2021-12-15
  • 2021-12-23
  • 2022-12-23
  • 2021-08-14
  • 2022-12-23
  • 2022-01-02
猜你喜欢
  • 2021-08-18
  • 2021-09-06
  • 2021-12-05
  • 2021-06-12
  • 2021-12-11
  • 2021-11-09
相关资源
相似解决方案